[MINOR] waybar fix icons

This commit is contained in:
Afonso Franco 2023-05-16 04:18:03 +01:00
parent a40c6baef8
commit 29238b134e
Signed by: afonso
SSH key fingerprint: SHA256:JiuxZNdA5bRWXPMUJChI0AQ75yC+cXY4xM0IaVwEVys
2 changed files with 8 additions and 39 deletions

View file

@ -28,24 +28,6 @@
}, },
}, },
"custom/launcher": {
"interval": "once",
"format": "󰣇",
"on-click": "pkill rofi || rofi --show drun",
"tooltip": false
},
"backlight": {
"device": "nvidia_0",
"max-length": "4",
"format": "{icon}",
"tooltip-format": "{percent}%",
"format-icons": ["","","","", "", "", ""],
"on-click": "",
"on-scroll-up": "brightnessctl set 10%-",
"on-scroll-down": "brightnessctl set +10%"
},
"memory": { "memory": {
"interval": 30, "interval": 30,
"format": " {}%", "format": " {}%",
@ -53,13 +35,6 @@
"max-length": 10 "max-length": 10
}, },
"custom/dunst": {
"exec": "~/.config/waybar/scripts/dunst.sh",
"on-click": "dunstctl set-paused toggle",
"restart-interval": 1,
"tooltip": false
},
"pulseaudio": { "pulseaudio": {
"format": "{icon} {volume}%", "format": "{icon} {volume}%",
"format-bluetooth": "{icon}  {volume}%", "format-bluetooth": "{icon}  {volume}%",
@ -101,7 +76,7 @@
"format-plugged": " {capacity}%", "format-plugged": " {capacity}%",
"format-alt": "{icon} {capacity}%", "format-alt": "{icon} {capacity}%",
"format-full": " 100%", "format-full": " 100%",
"format-icons": ["", "", "", "", "", "", "", "", "", ""] "format-icons": [" "," "," "," "," "," "," "," "," "," "]
}, },
"clock": { "clock": {

View file

@ -29,10 +29,9 @@ window#waybar {
#clock, #clock,
#clock-date, #clock-date,
#workspaces, #workspaces,
#pulseaudio,
#network,
#battery, #battery,
#custom-powermenu { #pulseaudio,
#network {
background-color: @bg0; background-color: @bg0;
color: @fg; color: @fg;
@ -40,13 +39,17 @@ window#waybar {
padding-right: 10px; padding-right: 10px;
margin-top: 7px; margin-top: 7px;
margin-bottom: 12px; margin-bottom: 12px;
border-radius: 10px; border-radius: 10px;
border-bottom-width: 5px; border-bottom-width: 5px;
border-bottom-color: @bg5; border-bottom-color: @bg5;
border-bottom-style: solid; border-bottom-style: solid;
} }
#battery {
margin-right: 15px;
}
#workspaces { #workspaces {
padding: 0px; padding: 0px;
} }
@ -74,12 +77,3 @@ window#waybar {
padding-right: 21px; padding-right: 21px;
} }
#custom-powermenu {
background-color: @red;
color: @bg0;
border-bottom-color: #9e0906;
margin-right: 15px;
padding-left: 20px;
padding-right: 23px;
}