switch to wofi

This commit is contained in:
Johannes Loher 2020-09-15 03:16:44 +02:00
parent 2a4f668d1b
commit 4f75549404
3 changed files with 53 additions and 5 deletions

View file

@ -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

View file

@ -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

49
.config/wofi/style.css Normal file
View file

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