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:
Alex Selimov 2025-07-14 10:34:18 -04:00
parent 3db68c6a5a
commit 6be8aa0d32
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
13 changed files with 286 additions and 183 deletions

View 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;
}