diff options
Diffstat (limited to 'waybar')
-rw-r--r-- | waybar/config | 9 | ||||
-rw-r--r-- | waybar/style.css | 7 |
2 files changed, 11 insertions, 5 deletions
diff --git a/waybar/config b/waybar/config index 9c7c2c5..93cbcf1 100644 --- a/waybar/config +++ b/waybar/config @@ -71,6 +71,7 @@ "format": "{icon}", "active-only": false, "all-outputs": false, + "persistent-only": true, "format-icons": { "1": "1", "2": "2", @@ -92,7 +93,7 @@ "18": "9", }, "persistent-workspaces": { - "eDP-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], + "*": 9, }, "on-scroll-up": "hyprctl dispatch split:workspace r+1", "on-scroll-down": "hyprctl dispatch split:workspace r-1", @@ -157,7 +158,7 @@ "tooltip": false }, "memory": { - "format": "{}% " + "format": "{used}G " }, "battery": { "bat": "BAT0", @@ -192,7 +193,7 @@ }, "network": { // "interface": "wlp2*", // (Optional) To force the use of this interface - "format-wifi": "{essid} ({signalStrength}%) ", + "format-wifi": "{essid} ", "format-ethernet": "Connected ", "tooltip-format": "{ifname} via {gwaddr} ", "format-linked": "{ifname} (No IP) ", @@ -223,7 +224,7 @@ }, "custom/power":{ "format": "", - "on-click": "rofi -show p -modi p:rofi-power-menu", + "on-click": "power-menu", //"on-click-right": "killall rofi" }, "custom/snip":{ diff --git a/waybar/style.css b/waybar/style.css index ff6dc9a..599e6af 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -14,6 +14,7 @@ window#waybar { color: #ffffff; transition-property: background-color; transition-duration: .5s; + background: rgba(0, 0, 0, 0.2); } window#waybar.hidden { @@ -159,11 +160,13 @@ label:focus { #cpu { background-color: #1b1d1c; color: #ffffff; + padding-right: 18px; } #memory { background-color: #198844; color: #ffffff; + padding-right: 18px; } #disk { @@ -179,6 +182,7 @@ label:focus { #network { background-color: #198844; color: #ffffff; + padding-right: 18px; } #network.disconnected { @@ -189,6 +193,7 @@ label:focus { #wireplumber { background-color: #198844; color: #ffffff; + padding-right: 18px; } #wireplumber.muted { @@ -322,7 +327,7 @@ label:focus { #idle_inhibitor { background-color: #1b1d1c; border-radius: 20px 0px 0px 20px; - + padding-right: 18px; } #idle_inhibitor.activated { |