diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2023-04-24 15:16:29 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2023-04-24 15:16:29 +0300 |
commit | 7b779ba9e4fd460655eed62a8538c44227f5c6f5 (patch) | |
tree | 6e263f20fec5088d5bbbdf9d53d466697cfba6d2 /dotfiles/.config | |
parent | a7fc2b6feb704aead1727c0155bb0e6c4c0a02eb (diff) | |
download | swayrice-7b779ba9e4fd460655eed62a8538c44227f5c6f5.tar.gz swayrice-7b779ba9e4fd460655eed62a8538c44227f5c6f5.zip |
waybar: better battery energy status
Diffstat (limited to 'dotfiles/.config')
-rw-r--r-- | dotfiles/.config/waybar/config | 10 | ||||
-rw-r--r-- | dotfiles/.config/waybar/style.css | 2 |
2 files changed, 5 insertions, 7 deletions
diff --git a/dotfiles/.config/waybar/config b/dotfiles/.config/waybar/config index 35f7c4d..94839e5 100644 --- a/dotfiles/.config/waybar/config +++ b/dotfiles/.config/waybar/config @@ -19,13 +19,13 @@ "custom/mail-status", "custom/pac-status", "custom/news-status", - "custom/batwatt", "memory", - "custom/torrent-status", - "network", "backlight", "battery#bat0", "battery#bat1", + "custom/batwatt", + "custom/torrent-status", + "network", "tray" ], "sway/mode": { @@ -219,10 +219,10 @@ "exec": "bards4battery" }, "custom/batwatt": { - "format": "<span color=\"#5b8277\"></span> {}", + "return-type": "json", "interval": 10, "exec-if": "test -e /sys/class/power_supply/BAT0", - "exec": "echo print\\(\\'{}W\\'.format\\($(grep 'POWER_SUPPLY_POWER_NOW' /sys/class/power_supply/BAT0/uevent | awk -F '=' '{print $2}')/1000000\\)\\) | python", + "exec": "barbatwatt", "exec-on-event": true, "on-click": "" }, diff --git a/dotfiles/.config/waybar/style.css b/dotfiles/.config/waybar/style.css index 17d083d..9c4aa78 100644 --- a/dotfiles/.config/waybar/style.css +++ b/dotfiles/.config/waybar/style.css @@ -8,9 +8,7 @@ window#waybar { min-height: 0; } #tray, -#battery, #network, -#backlight, #custom-torrent-status, #workspaces { background: #151517; |