This commit is contained in:
fatmeat 2025-05-11 17:36:14 +02:00
parent bd8c6c67ae
commit fa62e73c92
2 changed files with 14 additions and 11 deletions

View File

@ -13,7 +13,7 @@ tiling_drag modifier
#exec base #exec base
bindsym $mod+Return exec kitty bindsym $mod+Return exec kitty
bindsym $mod+Shift+q kill bindsym $mod+Shift+q kill
bindsym $mod+d exec --no-startup-id ~/.config/rofi/retro_launcher.sh bindsym $mod+d exec rofi -show drun -theme ~/.config/rofi/ayu-retro.rasi -p "╔═[ SELECT PROGRAM ]═╗"
# change focus # change focus
bindsym $mod+j focus left bindsym $mod+j focus left

View File

@ -14,41 +14,44 @@
window { window {
location: north; location: north;
anchor: north; anchor: north;
y-offset: 0;
width: 50%; width: 50%;
border: 2px; border: 2px;
padding: 10; background-color: @background;
y-offset: 60;
} }
mainbox { mainbox {
background-color: inherit; background-color: @background;
padding: 5; padding: 5;
border: 0;
} }
listview { listview {
lines: 8; lines: 8;
background-color: inherit;
columns: 1; columns: 1;
background-color: transparent;
padding: 5 0 0 0;
spacing: 4; spacing: 4;
border: 0;
} }
element { element {
padding: 4 6; padding: 6 8;
background-color: transparent; background-color: transparent;
} }
element-text {
text-color: inherit;
}
element selected { element selected {
background-color: @selected; background-color: @selected;
text-color: @selected-foreground; text-color: @selected-foreground;
} }
element-text {
text-color: @foreground;
}
inputbar { inputbar {
children: [prompt, entry]; children: [prompt, entry];
background-color: #1a1c25; background-color: @background-alt;
padding: 6; padding: 6;
} }