minor fix to bar
This commit is contained in:
parent
07f875a9dd
commit
1602552b5a
|
@ -77,13 +77,4 @@
|
|||
<family>IPAGothic</family>
|
||||
</prefer>
|
||||
</alias>
|
||||
|
||||
<!-- for theming -->
|
||||
<alias>
|
||||
<family>waybar</family>
|
||||
<prefer>
|
||||
<family>Hack</family>
|
||||
<family>Font Awesome 5 Pro</family>
|
||||
</prefer>
|
||||
</alias>
|
||||
</fontconfig>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[Unit]
|
||||
Description= A VNC server for wlroots based Wayland compositors
|
||||
Requires=sway-session.target
|
||||
After=network.target
|
||||
After=sway-session.target
|
||||
|
||||
[Service]
|
||||
|
|
|
@ -28,18 +28,19 @@
|
|||
"spacing": 10
|
||||
},
|
||||
"clock": {
|
||||
"format": " {:%Y-%m-%d %H:%M}"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"format": " {:%Y-%m-%d %H:%M}",
|
||||
"tooltip": false
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage:2}%"
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%"
|
||||
"format": " {percentage:2}%",
|
||||
"tooltip-format": "{used:0.1f}/{total:0.1f}GiB"
|
||||
},
|
||||
"backlight": {
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", "", ""]
|
||||
"format": "{icon} {percent:2}%",
|
||||
"format-icons": ["", "", ""]
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
|
@ -62,8 +63,8 @@
|
|||
},
|
||||
"pulseaudio": {
|
||||
//"scroll-step": 1,
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format": "{icon} {volume:2}%",
|
||||
"format-bluetooth": "{icon} {volume:2}%",
|
||||
"format-muted": " --%",
|
||||
"format-icons": {
|
||||
"headphones": "",
|
||||
|
|
|
@ -27,9 +27,13 @@ window#waybar {
|
|||
border-radius: 6.5px;
|
||||
}
|
||||
|
||||
#custom-vpn {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
#idle_inhibitor, #tray, #custom-vpn {
|
||||
padding-right: 0;
|
||||
min-width: 25px;
|
||||
min-width: 23px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue