diff --git a/.config/rofi/config b/.config/rofi/config index 6e03166..e12a9fc 100644 --- a/.config/rofi/config +++ b/.config/rofi/config @@ -18,5 +18,5 @@ rofi.width: 25 rofi.padding: 5 rofi.matching: normal rofi.hide-scrollbar: true -rofi.modi: drun,run,window +rofi.modi: drun,run rofi.terminal: termite diff --git a/.config/sway/config##template b/.config/sway/config##template index a9150b0..3c452de 100644 --- a/.config/sway/config##template +++ b/.config/sway/config##template @@ -53,10 +53,9 @@ font pango:$font # ------------------------------------------------------------------------------ # Launcher # ------------------------------------------------------------------------------ -bindsym $mod+d exec --no-startup-id rofi -show drun -bindsym $mod+x exec --no-startup-id rofi -show run -bindsym $mod+y exec --no-startup-id rofi -show window -bindsym $mod+o exec --no-startup-id rofi-pass +bindsym $mod+d exec --no-startup-id wofi --show drun +bindsym $mod+x exec --no-startup-id wofi --show run +bindsym $mod+o exec --no-startup-id wofipassmenu # ------------------------------------------------------------------------------ # Window management diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..b092005 --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,49 @@ +window { + margin: 2px; + border: 2px solid #1f222d; + background-color: #1f222d; + font-family: 'Roboto Regular'; +} + +#input { + margin: 2px; + border: 2px solid #252936; + background-color: #252936; + color: #7780a1; + font-size: 14pt; +} + +#inner-box { + margin: 2px; + border: 2px solid #252936; + background-color: #252936; +} + +#outer-box { + margin: 2px; + border: 2px solid #1f222d; + background-color: #1f222d; +} + +#scroll { + margin: 2px; + margin-top: 4px; + border: 2px solid #252936; + background-color: #252936; + border-radius: 5px; +} + +#text { + color: #7780a1; + font-size: 14pt; +} + +#text:selected { + color: #ffffff; +} + +#entry {} + +#entry:selected { + background-color: #1f222d; +} \ No newline at end of file