add rofi configs

This commit is contained in:
xfy
2024-07-02 08:43:06 +08:00
parent ea17a75441
commit 8783aa63d1
44 changed files with 2311 additions and 0 deletions

View File

@ -72,6 +72,7 @@ bindsym Mod1+q kill
# bindsym Mod1+d exec --no-startup-id dmenu_run
# A more modern dmenu replacement is rofi:
bindsym Mod1+space exec "rofi -modi drun,run -show drun"
# bindsym Mod1+space exec /home/$USER/.config/i3/rofilaunch.sh
# There also is i3-dmenu-desktop which only displays applications shipping a
# .desktop file. It is a wrapper around dmenu, so you need that installed.
# bindsym Mod1+d exec --no-startup-id i3-dmenu-desktop

30
i3/rofi.sh Executable file
View File

@ -0,0 +1,30 @@
#!/usr/bin/env sh
# set variables
ScrDir=$(dirname "$(realpath "$0")")
source $ScrDir/globalcontrol.sh
RofiConf="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/themeselect.rasi"
RofiStyle="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/styles"
RofiAssets="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/assets"
Rofilaunch="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/config.rasi"
# scale for monitor x res
x_monres=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .width')
monitor_scale=$(hyprctl -j monitors | jq '.[] | select (.focused == true) | .scale' | sed 's/\.//')
x_monres=$((x_monres * 18 / monitor_scale))
# set rofi override
elem_border=$((hypr_border * 5))
icon_border=$((elem_border - 5))
r_override="listview{columns:4;} element{orientation:vertical;border-radius:${elem_border}px;} element-icon{border-radius:${icon_border}px;size:${x_monres}px;} element-text{enabled:false;}"
# launch rofi menu
RofiSel=$(ls ${RofiStyle}/style_*.rasi | awk -F '/' '{print $NF}' | cut -d '.' -f 1 | while read rstyle; do
echo -en "$rstyle\x00icon\x1f${RofiAssets}/${rstyle}.png\n"
done | rofi -dmenu -theme-str "${r_override}" -config $RofiConf)
# apply rofi style
if [ ! -z $RofiSel ]; then
cp "${RofiStyle}/${RofiSel}.rasi" "${Rofilaunch}"
notify-send -a "t1" -r 91190 -t 2200 -i "${RofiAssets}/${RofiSel}.png" " ${RofiSel} applied..."
fi

41
i3/rofilaunch.sh Executable file
View File

@ -0,0 +1,41 @@
#!/usr/bin/env sh
ScrDir=$(dirname "$(realpath "$0")")
source $ScrDir/globalcontrol.sh
roconf="~/.config/rofi/config.rasi"
# rofi action
case $1 in
d) r_mode="drun" ;;
w) r_mode="window" ;;
f) r_mode="filebrowser" ;;
h)
echo -e "rofilaunch.sh [action]\nwhere action,"
echo "d : drun mode"
echo "w : window mode"
echo "f : filebrowser mode,"
exit 0
;;
*) r_mode="drun" ;;
esac
# read hypr theme border
wind_border=$((hypr_border * 2))
elem_border=$([ $hypr_border -eq 0 ] && echo "10" || echo $((hypr_border * 2)))
r_override="window {border: ${hypr_width}px; border-radius: ${wind_border}px;} element {border-radius: ${elem_border}px;}"
# read hypr font size
fnt_override=$(gsettings get org.gnome.desktop.interface font-name | awk '{gsub(/'\''/,""); print $NF}')
fnt_override="configuration {font: \"JetBrainsMono Nerd Font ${fnt_override}\";}"
# read hypr theme icon
icon_override=$(gsettings get org.gnome.desktop.interface icon-theme | sed "s/'//g")
icon_override="configuration {icon-theme: \"${icon_override}\";}"
# launch rofi
rofi -show $r_mode -theme-str "${fnt_override}" -theme-str "${r_override}" -theme-str "${icon_override}" -config "${roconf}"

1
rofi/.current_wallpaper Symbolic link
View File

@ -0,0 +1 @@
/home/kyokino/.config/swww/Catppuccin-Mocha/evening-sky.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

BIN
rofi/assets/style_1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
rofi/assets/style_2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
rofi/assets/style_3.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
rofi/assets/style_4.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
rofi/assets/style_5.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
rofi/assets/style_6.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
rofi/assets/style_7.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
rofi/assets/style_8.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
rofi/assets/style_9.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

89
rofi/clipboard.rasi Executable file
View File

@ -0,0 +1,89 @@
// Config //
configuration {
modi: "drun";
show-icons: false;
font: "JetBrainsMono Nerd Font 9";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 55%;
width: 20%;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
orientation: vertical;
children: [ "inputbar" , "listbox" ];
background-color: transparent;
}
// Inputs //
inputbar {
enabled: true;
padding: 0.5em;
children: [ "entry" ];
background-color: transparent;
}
entry {
enabled: true;
padding: 3em;
text-color: @main-fg;
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", width);
}
// Lists //
listbox {
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "listview" ];
background-color: transparent;
}
listview {
enabled: true;
padding: 0.5em;
columns: 1;
cycle: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Elements //
element {
enabled: true;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-text {
vertical-align: 0.0;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

158
rofi/config.rasi Executable file
View File

@ -0,0 +1,158 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: false;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font Mono";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 37em;
width: 49em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: vertical;
children: [ "inputbar" , "listbox" ];
background-color: transparent;
//background-image: url("~/.config/swww/wall.blur", height);
}
// Inputs //
inputbar {
enabled: true;
spacing: 10px;
padding: 1.2em;
children: [ "textbox-prompt-colon", "entry" ];
background-color: @main-bg;
// background-image: url("~/.config/swww/wall.rofi", width);
}
textbox-prompt-colon {
enabled: false;
expand: false;
str: "test";
background-color: inherit;
text-color: inherit;
}
entry {
border-radius: 0em;
border: 1px;
border-color: #EAB2C2;
enabled: true;
spacing: 0em;
padding: 0.8em;
text-color: #83A3BB;
//61382D
background-color: transparent;
placeholder: "looking for something...?";
placeholder-color: #83A3BB;
cursor: text;
}
// Lists //
listbox {
padding: 1.15em;
spacing: 0em;
orientation: horizontal;
children: [ "listview"];
background-color: @main-bg;
}
listview {
padding: 0em;
spacing: 0em;
enabled: true;
columns: 1;
lines: 10;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Modes //
mode-switcher {
orientation: vertical;
width: 1em;
enabled: false;
padding: 1.5em;
spacing: 1.5em;
background-color: transparent;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.45;
border-radius: 2em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Elements //
element {
enabled: true;
spacing: 0em;
padding: 0.2em;
cursor: pointer;
background-color: transparent;
text-color: #EBDDBC;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: #EAB2C2;
text-color: #1B1E25;
border-radius: 0px;
}
element-icon {
size: 2.1em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
padding: 0.7em;
}

79
rofi/quickapps.rasi Executable file
View File

@ -0,0 +1,79 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "listbox" ];
background-color: transparent;
}
// Lists //
listbox {
padding: 0em;
spacing: 0em;
orientation: horizontal;
children: [ "listview" ];
background-color: transparent;
}
listview {
padding: 2px;
spacing: 0em;
enabled: true;
columns: 1;
cycle: true;
dynamic: true;
scrollbar: false;
flow: horizontal;
reverse: false;
fixed-height: false;
fixed-columns: false;
cursor: "default";
background-color: transparent;
}
// Elements //
element {
orientation: vertical;
enabled: true;
spacing: 0em;
padding: 0em;
cursor: pointer;
background-color: transparent;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @main-fg;
}
element-icon {
cursor: inherit;
background-color: transparent;
}
element-text {
enabled: false;
}

94
rofi/steam/gamelauncher_1.rasi Executable file
View File

@ -0,0 +1,94 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
width: 20%;
height: 100%;
location: west;
x-offset: 10%;
transparency: "real";
cursor: "default";
spacing: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: transparent;
background-color: transparent;
}
mainbox {
enabled: true;
children: [ "listview" ];
background-color: @main-bg;
}
// Lists //
listview {
enabled: true;
columns: 1;
spacing: 17px;
padding: 10px 20px 10px 20px;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Elements //
element {
enabled: true;
orientation: horizontal;
spacing: 0px;
padding: 0px;
border-radius: 0px;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 15%;
spacing: 0px;
padding: 0px;
cursor: inherit;
border-radius: 35px;
background-color: transparent;
text-color: inherit;
}
element-text {
enabled: true;
vertical-align: 0.5;
horizontal-align: 0;
spacing: 0px;
padding: 0px;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

92
rofi/steam/gamelauncher_2.rasi Executable file
View File

@ -0,0 +1,92 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
width: 100%;
height: 800px;
transparency: "real";
cursor: "default";
spacing: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: transparent;
background-color: transparent;
}
mainbox {
enabled: true;
children: [ "listview" ];
background-color: @main-bg;
}
// Lists //
listview {
enabled: true;
columns: 9;
lines: 1;
spacing: 30px;
padding: 30px 200px 30px 200px;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Elements //
element {
enabled: true;
orientation: vertical;
spacing: 0px;
padding: 5px;
border-radius: 0px;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: horizontal;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 29%;
spacing: 0px;
padding: 0px;
cursor: inherit;
border-radius: 35px;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
spacing: 0px;
padding: 10px;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

93
rofi/steam/gamelauncher_3.rasi Executable file
View File

@ -0,0 +1,93 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
width: 28%;
height: 100%;
location: west;
transparency: "real";
cursor: "default";
spacing: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: transparent;
background-color: transparent;
}
mainbox {
enabled: true;
children: [ "listview" ];
background-color: @main-bg;
}
// Lists //
listview {
enabled: true;
columns: 4;
spacing: 20px;
padding: 10px 50px 10px 50px;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Elements //
element {
enabled: true;
orientation: vertical;
spacing: 0px;
padding: 3px;
border-radius: 0px;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 20%;
spacing: 0px;
padding: 0px;
cursor: inherit;
border-radius: 35px;
background-color: transparent;
text-color: inherit;
}
element-text {
enabled: true;
vertical-align: 0.5;
horizontal-align: 0.5;
spacing: 0px;
padding: 5px;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

91
rofi/steam/gamelauncher_4.rasi Executable file
View File

@ -0,0 +1,91 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
width: 100%;
transparency: "real";
cursor: "default";
spacing: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: transparent;
background-color: transparent;
}
mainbox {
enabled: true;
children: [ "listview" ];
background-color: @main-bg;
}
// Lists //
listview {
enabled: true;
columns: 10;
lines: 1;
spacing: 30px;
padding: 40px 100px 40px 100px;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Elements //
element {
enabled: true;
orientation: vertical;
spacing: 0px;
padding: 5px;
border-radius: 0px;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: horizontal;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 30%;
spacing: 0px;
padding: 0px;
cursor: inherit;
border-radius: 35px;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
spacing: 0px;
padding: 10px;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

97
rofi/steam/gamelauncher_5.rasi Executable file
View File

@ -0,0 +1,97 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
width: 2155px;
height: 850px;
transparency: "real";
cursor: "default";
spacing: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: transparent;
background-image: url("~/.config/rofi/assets/steamdeck_holographic.png", width);
background-color: transparent;
}
mainbox {
enabled: true;
children: [ "listview" ];
background-color: transparent;
orientation: horizontal;
spacing: 0px;
padding: 42px 442px 50px 450px;
}
// Lists //
listview {
enabled: true;
columns: 5;
rows: 2;
flow: horizontal;
spacing: 25px;
padding: 20px 50px 20px 50px;
cycle: true;
dynamic: true;
scrollbar: false;
reverse: true;
fixed-height: false;
fixed-columns: false;
cursor: "default";
background-color: @main-bg;
text-color: @main-fg;
border-radius: 8px;
}
// Elements //
element {
enabled: true;
orientation: vertical;
spacing: 0px;
padding: 5px;
border-radius: 0px;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: horizontal;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 300px;
spacing: 0px;
padding: 0px;
cursor: inherit;
border-radius: 0px;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
spacing: 0px;
padding: 10px;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

140
rofi/styles/style_1.rasi Executable file
View File

@ -0,0 +1,140 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 33em;
width: 63em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "dummywall" , "listbox" ];
background-color: transparent;
}
dummywall {
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "mode-switcher" , "inputbar" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.rofi", height);
}
// Modes //
mode-switcher{
orientation: vertical;
enabled: true;
width: 3.8em;
padding: 9.2em 0.5em 9.2em 0.5em;
spacing: 1.2em;
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", height);
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.45;
border-radius: 2em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Inputs //
inputbar {
enabled: true;
children: [ "entry" ];
background-color: transparent;
}
entry {
enabled: false;
}
// Lists //
listbox {
spacing: 0em;
padding: 2em;
children: [ "dummy" , "listview" , "dummy" ];
background-color: transparent;
}
listview {
enabled: true;
spacing: 0em;
padding: 0em;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
dummy {
background-color: transparent;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 0.4em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 2.8em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

142
rofi/styles/style_2.rasi Executable file
View File

@ -0,0 +1,142 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 35em;
width: 56em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: vertical;
children: [ "inputbar" , "listbox" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", height);
}
// Inputs //
inputbar {
enabled: true;
spacing: 0em;
padding: 5em;
children: [ "entry" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.rofi", width);
}
entry {
border-radius: 2em;
enabled: true;
spacing: 1em;
padding: 1em;
text-color: @main-fg;
background-color: @main-bg;
}
// Lists //
listbox {
padding: 0em;
spacing: 0em;
orientation: horizontal;
children: [ "listview" , "mode-switcher" ];
background-color: @main-bg;
}
listview {
padding: 1.5em;
spacing: 0.5em;
enabled: true;
columns: 2;
lines: 3;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Modes //
mode-switcher {
orientation: vertical;
width: 6.6em;
enabled: true;
padding: 1.5em;
spacing: 1.5em;
background-color: transparent;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.45;
border-radius: 2em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Elements //
element {
enabled: true;
spacing: 0em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 3em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

142
rofi/styles/style_3.rasi Executable file
View File

@ -0,0 +1,142 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 30em;
width: 37em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: vertical;
children: [ "inputbar" , "dummybox" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", height);
}
dummybox {
padding: 0.5em;
spacing: 0em;
orientation: horizontal;
children: [ "mode-switcher" , "listbox" ];
background-color: transparent;
background-image: transparent;
}
// Inputs //
inputbar {
enabled: false;
}
// Lists //
listbox {
padding: 0em;
spacing: 0em;
children: [ "dummy" , "listview" , "dummy" ];
background-color: transparent;
background-image: transparent;
}
listview {
padding: 1em;
spacing: 0em;
enabled: true;
columns: 1;
lines: 7;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: @main-bg;
text-color: @main-fg;
border-radius: 1.5em;
}
dummy {
background-color: transparent;
}
// Modes //
mode-switcher {
orientation: vertical;
width: 6.8em;
enabled: true;
padding: 3.2em 1em 3.2em 1em;
spacing: 1em;
background-color: transparent;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.45;
border-radius: 3em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 0.4em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 3em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

135
rofi/styles/style_4.rasi Executable file
View File

@ -0,0 +1,135 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 30em;
width: 46em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "inputbar" , "mode-switcher" , "listbox" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", height);
}
// Inputs //
inputbar {
enabled: true;
width: 8em;
children: [ "entry" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.rofi", height);
}
entry {
enabled: false;
}
// Modes //
mode-switcher{
orientation: vertical;
enabled: true;
width: 7em;
spacing: 1em;
padding: 3.4em 1em 3.4em 1em;
background-color: transparent;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.47;
border-radius: 3em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Lists //
listbox {
spacing: 0em;
padding: 0.5em;
children: [ "dummy" , "listview" , "dummy" ];
background-color: transparent;
}
listview {
spacing: 0em;
padding: 1em;
enabled: true;
columns: 1;
lines: 7;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: @main-bg;
text-color: @main-fg;
border-radius: 1.5em;
}
dummy {
background-color: transparent;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 0.4em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 3em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

134
rofi/styles/style_5.rasi Executable file
View File

@ -0,0 +1,134 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 31em;
width: 50em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: vertical;
children: [ "inputbar" , "listbox" , "mode-switcher" ];
background-color: transparent;
}
// Inputs //
inputbar {
enabled: true;
children: [ "entry" ];
}
entry {
enabled: false;
}
// Lists //
listbox {
padding: 0em;
spacing: 0em;
orientation: horizontal;
children: [ "listview" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", width);
}
listview {
padding: 2em;
spacing: 1em;
enabled: true;
columns: 5;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: @main-bg;
text-color: @main-fg;
}
// Modes //
mode-switcher {
orientation: horizontal;
enabled: true;
padding: 2em 9.8em 2em 9.8em;
spacing: 2em;
background-color: transparent;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.40;
padding: 2.5em;
spacing: 0em;
border-radius: 3em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Elements //
element {
orientation: vertical;
enabled: true;
spacing: 0.2em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 5.5em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

139
rofi/styles/style_6.rasi Executable file
View File

@ -0,0 +1,139 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 21em;
width: 27em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "inputbar" , "mode-switcher" , "listbox" ];
background-color: @main-bg;
}
// Inputs //
inputbar {
width: 0em;
enabled: true;
children: [ "entry" ];
}
entry {
enabled: false;
}
// Modes //
mode-switcher {
width: 9em;
orientation: vertical;
enabled: true;
padding: 3em 1.8em 3em 1.8em;
spacing: 1em;
background-color: @main-bg;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.47;
border-radius: 3em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
border-radius: 3em;
background-color: @main-fg;
text-color: @main-bg;
}
// Lists //
listbox {
padding: 0em;
spacing: 0em;
orientation: vertical;
children: [ "dummy" , "listview" , "dummy" ];
background-color: transparent;
}
listview {
padding: 1em;
spacing: 0em;
enabled: true;
columns: 1;
lines: 7;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
dummy {
background-color: transparent;
}
// Elements //
element {
orientation: horizontal;
enabled: true;
spacing: 1.5em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 3em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

151
rofi/styles/style_7.rasi Executable file
View File

@ -0,0 +1,151 @@
// Config //
configuration {
modi: "drun,filebrowser,window";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 12em;
width: 38em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: vertical;
children: [ "listbox" , "inputmode" ];
background-color: transparent;
}
// Lists //
listbox {
padding: 0em;
spacing: 0em;
orientation: horizontal;
children: [ "listview" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", width);
}
listview {
padding: 0.5em;
spacing: 0.2em;
enabled: true;
columns: 5;
cycle: true;
dynamic: true;
scrollbar: false;
reverse: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: @main-bg;
text-color: @main-fg;
}
// Inputs //
inputmode {
padding: 0em;
spacing: 0em;
orientation: horizontal;
children: [ "inputbar" , "mode-switcher" ];
background-color: transparent;
}
inputbar {
enabled: true;
width: 24em;
padding: 0em;
spacing: 0em;
padding: 1.5em 1em 1.5em 2.5em;
children: [ "entry" ];
background-color: transparent;
}
entry {
vertical-align: 0.5;
border-radius: 3em;
enabled: true;
spacing: 0em;
padding: 1em;
text-color: @main-fg;
background-color: @main-bg;
}
// Modes //
mode-switcher {
width: 13em;
orientation: horizontal;
enabled: true;
padding: 1.5em 2.5em 1.5em 0em;
spacing: 1em;
background-color: transparent;
}
button {
cursor: pointer;
vertical-align: 0.50;
horizontal-align: 0.45;
padding: 0em;
border-radius: 3em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Elements //
element {
orientation: vertical;
enabled: true;
spacing: 0.2em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 2.5em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

144
rofi/styles/style_8.rasi Executable file
View File

@ -0,0 +1,144 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 30em;
width: 37em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 0em;
orientation: horizontal;
children: [ "listmode" , "inputbar" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.rofi", height);
}
// Lists //
listmode {
enabled: true;
children: [ "listbox" , "mode-switcher" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.blur", height);
}
listbox {
spacing: 0em;
padding: 1em;
children: [ "dummy" , "listview" , "dummy" ];
background-color: transparent;
}
listview {
enabled: true;
spacing: 0em;
padding: 0.5em;
columns: 1;
lines: 6;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: @main-bg;
text-color: @main-fg;
border-radius: 1em;
}
dummy {
background-color: transparent;
}
// Modes //
mode-switcher{
orientation: horizontal;
enabled: true;
spacing: 1em;
padding: 0em 9.5em 2em 2em;
background-color: transparent;
}
button {
padding: 1em;
vertical-align: 0.50;
horizontal-align: 0.35;
cursor: pointer;
border-radius: 3em;
background-color: @main-bg;
text-color: @main-fg;
}
button selected {
background-color: @main-fg;
text-color: @main-bg;
}
// Inputs //
inputbar {
enabled: true;
width: 10em;
children: [ "entry" ];
background-color: transparent;
}
entry {
enabled: false;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 0.3em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 3em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

118
rofi/styles/style_9.rasi Executable file
View File

@ -0,0 +1,118 @@
// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: "";
display-run: "";
display-filebrowser: "";
display-window: "";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
height: 30em;
width: 57em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
spacing: 1em;
padding: 1em;
orientation: horizontal;
children: [ "inputbar" , "listbox" ];
background-color: transparent;
}
// Inputs //
inputbar {
enabled: true;
width: 27em;
spacing: 0em;
padding: 0em;
children: [ "entry" ];
background-color: transparent;
background-image: url("~/.config/swww/wall.thmb", height);
border-radius: 1em;
}
entry {
enabled: false;
}
// Lists //
listbox {
spacing: 0em;
padding: 0em;
children: [ "dummy" , "listview" , "dummy" ];
background-color: transparent;
}
listview {
enabled: true;
spacing: 0em;
padding: 1em;
columns: 1;
lines: 7;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
dummy {
background-color: transparent;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 2.7em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}

View File

@ -0,0 +1,10 @@
* {
main-bg: #dce0e8e6;
main-fg: #4c4f69ff;
main-br: #9ca0b0ff;
main-ex: #8839efff;
select-bg: #dd7878ff;
select-fg: #eff1f5ff;
separatorcolor: transparent;
border-color: transparent;
}

View File

@ -0,0 +1,10 @@
* {
main-bg: #11111be6;
main-fg: #cdd6f4ff;
main-br: #cba6f7ff;
main-ex: #f5e0dcff;
select-bg: #b4befeff;
select-fg: #11111bff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Cyberpunk-Edge.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #000000e6;
main-fg: #ffffffff;
main-br: #ffa6c2ff;
main-ex: #f5e0dcff;
select-bg: #fada16ff;
select-fg: #000000ff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Decay-Green.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #151720e6;
main-fg: #cbced3ff;
main-br: #98d3eecc;
main-ex: #95d3afcc;
select-bg: #90ceaaff;
select-fg: #151720ff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Frosted-Glass.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #e6f1f4d9;
main-fg: #1e4c84ff;
main-br: #a44185ff;
main-ex: #ea9d34cc;
select-bg: #7ed6ffff;
select-fg: #1e4c84ff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Graphite-Mono.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #262626e6;
main-fg: #d9d9d9ff;
main-br: #a6a6a6ff;
main-ex: #595959cc;
select-bg: #a6a6a6ff;
select-fg: #262626ff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Gruvbox-Retro.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #282828FF;
main-fg: #CBCED3FF;
main-br: #EBDBB2FF;
main-ex: #85A583FF;
select-bg: #475437FF;
select-fg: #B5CC97FF;
separatorcolor: transparent;
border-color: transparent;
}

View File

@ -0,0 +1,10 @@
* {
main-bg: #faf4ede6;
main-fg: #b4637aff;
main-br: #9893a5ff;
main-ex: #ea9d34cc;
select-bg: #d7827eff;
select-fg: #fffaf3ff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Rose-Pine.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #26233ae6;
main-fg: #e0def4ff;
main-br: #31748fff;
main-ex: #c4a7e7cc;
select-bg: #c4a7e7ff;
select-fg: #191724ff;
separatorcolor: transparent;
border-color: transparent;
}

10
rofi/themes/Tokyo-Night.rasi Executable file
View File

@ -0,0 +1,10 @@
* {
main-bg: #24283be6;
main-fg: #c0caf5ff;
main-br: #bb9af7ff;
main-ex: #7dcfffcc;
select-bg: #7aa2f7ff;
select-fg: #24283bff;
separatorcolor: transparent;
border-color: transparent;
}

8
rofi/themes/Wall-Dcol.rasi Executable file
View File

@ -0,0 +1,8 @@
* {
main-bg: #2F364AB3;
main-fg: #CCD9FFE6;
main-br: #D9C95EE6;
main-ex: #76C4D7E6;
select-bg: #F0AAC180;
select-fg: #522936E6;
}

8
rofi/themes/theme.rasi Executable file
View File

@ -0,0 +1,8 @@
* {
main-bg: #1b1e25;
main-fg: #CCD9FFE6;
main-br: #D9C95EE6;
main-ex: #76C4D7E6;
select-bg: #F0AAC180;
select-fg: #522936E6;
}

84
rofi/themeselect.rasi Executable file
View File

@ -0,0 +1,84 @@
// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 10";
}
@theme "~/.config/rofi/themes/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
width: 100%;
transparency: "real";
cursor: "default";
spacing: 0em;
padding: 0em;
border: 0em;
border-radius: 0em;
border-color: transparent;
background-color: transparent;
}
mainbox {
enabled: true;
children: [ "listview" ];
background-color: @main-bg;
}
// Lists //
listview {
enabled: true;
columns: 3;
lines: 1;
spacing: 4em;
padding: 4em 6em 4em 6em;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
// Elements //
element {
enabled: true;
orientation: horizontal;
spacing: 0em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
@media(max-aspect-ratio: 1.8) {
element {
orientation: vertical;
}
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}