mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Add dmenu theme
This commit is contained in:
parent
1efb4dab6c
commit
5775e80111
3 changed files with 46 additions and 0 deletions
|
@ -186,6 +186,7 @@ theme_DATA=\
|
||||||
themes/arthur.rasi\
|
themes/arthur.rasi\
|
||||||
themes/blue.rasi\
|
themes/blue.rasi\
|
||||||
themes/c64.rasi\
|
themes/c64.rasi\
|
||||||
|
themes/dmenu.rasi\
|
||||||
themes/glue_pro_blue.rasi\
|
themes/glue_pro_blue.rasi\
|
||||||
themes/gruvbox-dark-hard.rasi\
|
themes/gruvbox-dark-hard.rasi\
|
||||||
themes/gruvbox-dark-soft.rasi\
|
themes/gruvbox-dark-soft.rasi\
|
||||||
|
|
|
@ -229,6 +229,7 @@ install_data(
|
||||||
'themes/arthur.rasi',
|
'themes/arthur.rasi',
|
||||||
'themes/blue.rasi',
|
'themes/blue.rasi',
|
||||||
'themes/c64.rasi',
|
'themes/c64.rasi',
|
||||||
|
'themes/dmenu.rasi',
|
||||||
'themes/glue_pro_blue.rasi',
|
'themes/glue_pro_blue.rasi',
|
||||||
'themes/gruvbox-dark-hard.rasi',
|
'themes/gruvbox-dark-hard.rasi',
|
||||||
'themes/gruvbox-dark-soft.rasi',
|
'themes/gruvbox-dark-soft.rasi',
|
||||||
|
|
44
themes/dmenu.rasi
Normal file
44
themes/dmenu.rasi
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
* {
|
||||||
|
background: Black;
|
||||||
|
foreground: White;
|
||||||
|
font: "Times New Roman 12";
|
||||||
|
}
|
||||||
|
|
||||||
|
configuration {
|
||||||
|
show-icons: true;
|
||||||
|
drun-icon-theme: "gnome";
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
anchor: north;
|
||||||
|
location: north;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window box {
|
||||||
|
width: 100%;
|
||||||
|
padding: 4px;
|
||||||
|
children: [ horibox ];
|
||||||
|
}
|
||||||
|
|
||||||
|
#window horibox box {
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ prompt, entry, listview ];
|
||||||
|
}
|
||||||
|
|
||||||
|
#window horibox listview box {
|
||||||
|
layout: horizontal;
|
||||||
|
spacing: 5px;
|
||||||
|
lines: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window horibox entry {
|
||||||
|
expand: false;
|
||||||
|
width: 10em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window horibox listview element {
|
||||||
|
padding: 0px 2px;
|
||||||
|
}
|
||||||
|
#window horibox listview element selected {
|
||||||
|
background: SteelBlue;
|
||||||
|
}
|
Loading…
Reference in a new issue