Lots of updates to SelimovDE
- Swap from Super to alt as my main mod key - Update some bar scripts - Update picom settings (for use with Openbox) - Update some dunst settings - Update rofi settings
This commit is contained in:
parent
3db68c6a5a
commit
6be8aa0d32
13 changed files with 286 additions and 183 deletions
|
@ -9,13 +9,14 @@
|
|||
|
||||
/*****----- Configuration -----*****/
|
||||
configuration {
|
||||
modi: "drun,run";
|
||||
show-icons: false;
|
||||
font: "CaskaydiaMono Nerd Font 12";
|
||||
modi: "drun";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
font: "IosevkaTermSlab Nerd Font Propo 14";
|
||||
display-drun: "";
|
||||
display-run: "";
|
||||
display-filebrowser: "";
|
||||
display-window: "";
|
||||
//display-run: "";
|
||||
//display-filebrowser: "";
|
||||
//display-window: "";
|
||||
drun-display-format: "{name}";
|
||||
window-format: "{w} · {c} · {t}";
|
||||
}
|
||||
|
@ -35,7 +36,7 @@ configuration {
|
|||
active-background: var(active);
|
||||
active-foreground: var(background);
|
||||
selected-normal-background: var(selected);
|
||||
selected-normal-foreground: var(background);
|
||||
selected-normal-foreground: var(background-alt);
|
||||
selected-urgent-background: var(active);
|
||||
selected-urgent-foreground: var(background);
|
||||
selected-active-background: var(urgent);
|
||||
|
@ -55,7 +56,7 @@ window {
|
|||
location: center;
|
||||
anchor: center;
|
||||
fullscreen: false;
|
||||
width: 400px;
|
||||
width: 800px;
|
||||
x-offset: 0px;
|
||||
y-offset: 0px;
|
||||
|
||||
|
@ -146,7 +147,7 @@ num-rows {
|
|||
text-color: inherit;
|
||||
}
|
||||
case-indicator {
|
||||
enabled: true;
|
||||
enabled: false;
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
@ -155,7 +156,7 @@ case-indicator {
|
|||
listview {
|
||||
enabled: true;
|
||||
columns: 1;
|
||||
lines: 6;
|
||||
lines: 4;
|
||||
cycle: true;
|
||||
dynamic: true;
|
||||
scrollbar: false;
|
||||
|
@ -247,7 +248,7 @@ element-text {
|
|||
|
||||
/*****----- Mode Switcher -----*****/
|
||||
mode-switcher{
|
||||
enabled: true;
|
||||
enabled: false;
|
||||
spacing: 10px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
|
@ -304,3 +305,5 @@ error-message {
|
|||
background-color: @background-colour;
|
||||
text-color: @foreground-colour;
|
||||
}
|
||||
|
||||
element-icon { size: 5ch ; }
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
* {
|
||||
background: #BBBBBBFF;
|
||||
background-alt: #8e8e8eFF;
|
||||
foreground: #191919FF;
|
||||
selected: #83A598FF;
|
||||
active: #B8BB26FF;
|
||||
background-alt: #BBBBBBFF;
|
||||
foreground: #3d3839FF;
|
||||
selected: #3d3839FF;
|
||||
active: #BBBBBBFF;
|
||||
urgent: #FB4934FF;
|
||||
}
|
||||
|
|
88
config/rofi/spotlight.rasi
Normal file
88
config/rofi/spotlight.rasi
Normal file
|
@ -0,0 +1,88 @@
|
|||
/*
|
||||
* ROFI color theme
|
||||
*
|
||||
* Based on Something Found in the Internet
|
||||
*
|
||||
* User: Contributors
|
||||
* Copyright: *!
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "JetBrainsMono Nerd Font Medium 10";
|
||||
|
||||
drun {
|
||||
display-name: "";
|
||||
}
|
||||
|
||||
run {
|
||||
display-name: "";
|
||||
}
|
||||
|
||||
window {
|
||||
display-name: "";
|
||||
}
|
||||
|
||||
timeout {
|
||||
delay: 10;
|
||||
action: "kb-cancel";
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
spacing: 0;
|
||||
|
||||
bg: #151515;
|
||||
bg-alt: #232323;
|
||||
fg: #FFFFFF;
|
||||
fg-alt: #424242;
|
||||
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [inputbar, listview];
|
||||
}
|
||||
|
||||
inputbar {
|
||||
background-color: @bg-alt;
|
||||
children: [prompt, entry];
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: inherit;
|
||||
padding: 12px 3px;
|
||||
}
|
||||
|
||||
prompt {
|
||||
background-color: inherit;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
listview {
|
||||
lines: 8;
|
||||
}
|
||||
|
||||
element {
|
||||
children: [element-icon, element-text];
|
||||
}
|
||||
|
||||
element-icon {
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
padding: 10px 0;
|
||||
text-color: @fg-alt;
|
||||
}
|
||||
|
||||
element-text selected {
|
||||
text-color: @fg;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue