switch to wofi
This commit is contained in:
parent
2a4f668d1b
commit
4f75549404
3 changed files with 53 additions and 5 deletions
|
@ -18,5 +18,5 @@ rofi.width: 25
|
||||||
rofi.padding: 5
|
rofi.padding: 5
|
||||||
rofi.matching: normal
|
rofi.matching: normal
|
||||||
rofi.hide-scrollbar: true
|
rofi.hide-scrollbar: true
|
||||||
rofi.modi: drun,run,window
|
rofi.modi: drun,run
|
||||||
rofi.terminal: termite
|
rofi.terminal: termite
|
||||||
|
|
|
@ -53,10 +53,9 @@ font pango:$font
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Launcher
|
# Launcher
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
bindsym $mod+d exec --no-startup-id rofi -show drun
|
bindsym $mod+d exec --no-startup-id wofi --show drun
|
||||||
bindsym $mod+x exec --no-startup-id rofi -show run
|
bindsym $mod+x exec --no-startup-id wofi --show run
|
||||||
bindsym $mod+y exec --no-startup-id rofi -show window
|
bindsym $mod+o exec --no-startup-id wofipassmenu
|
||||||
bindsym $mod+o exec --no-startup-id rofi-pass
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Window management
|
# Window management
|
||||||
|
|
49
.config/wofi/style.css
Normal file
49
.config/wofi/style.css
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue