diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/waybar/config | 32 | ||||
| -rw-r--r-- | .config/waybar/style.css | 1 |
2 files changed, 22 insertions, 11 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index 0c493cb..65d2b33 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -5,14 +5,24 @@ "spacing": 5, "modules-left": ["sway/workspaces"], - "modules-right": ["wireplumber", "backlight", "battery", "group/net" ,"clock"], - + "modules-right": ["custom/anki","wireplumber", "backlight", "battery", "group/net" ,"clock"], "group/net": { "orientation": "horizontal", "modules": ["network", "bluetooth"] }, + "custom/anki": + { + "exec": "~/scripts/anki.sh", + "on-click": "~/scripts/anki.sh", + "interval": 3600, + "format": "{icon} {text} |", + "format-icons": { + "default": "" + } + }, + "sway/workspaces": { "disable-scroll": true, "all-outputs": true, @@ -25,8 +35,8 @@ }, "wireplumber": { - "format": "{volume}% ", - "format-muted": "", + "format": " {volume}% |", + "format-muted": " |", "max-volume": 100, "scroll-step": 5, "on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle" @@ -35,15 +45,15 @@ "battery": { "bat": "BAT0", "interval": 10, - "format": "{icon} {capacity}% ({time})", - "format-charging": " {icon} {capacity}%", - "format-plugged": " {capacity}%", + "format": "{icon} {capacity}% {time} |", + "format-charging": " {icon} {capacity}% |", + "format-plugged": " {capacity}% |", "format-icons": ["", "", "", "", ""], "tooltip-format": "{timeTo}" }, "backlight": { - "format": "{percent}% " + "format": "{percent}% |" }, "network": { @@ -55,8 +65,8 @@ }, "bluetooth": { - "format": "", - "format-disabled": "", - "format-connected": "" + "format": " |", + "format-disabled": " |", + "format-connected": " |" } } diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 328b03f..ac2076a 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -3,6 +3,7 @@ font-size: 14px; border: none; border-radius: 0; + transition: none; } window#waybar { |