diff options
Diffstat (limited to '.config/waybar/config.jsonc')
-rw-r--r-- | .config/waybar/config.jsonc | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc deleted file mode 100644 index 98881f3..0000000 --- a/.config/waybar/config.jsonc +++ /dev/null @@ -1,115 +0,0 @@ -{ - "layer": "top", - "position": "top", - "mod": "dock", - "exclusive": true, - "passthrough": false, - "gtk-layer-shell": true, - "height": 0, - "modules-left": [ - "clock", - "custom/weather" - // "hyprland/window", - ], - "modules-center": ["wlr/workspaces"], - "modules-right": [ - "tray", - "custom/updates", - "custom/language", - "battery", - "backlight", - "custom/volume" - // "pulseaudio#microphone" - ], - - "hyprland/window": { - "format": "{}" - }, - "wlr/workspaces": { - "disable-scroll": true, - "all-outputs": true, - "on-click": "activate", - //"format": "{icon}", - "persistent_workspaces": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [], - "6": [], - "7": [], - "8": [], - "9": [], - "10": [] - } - }, - "custom/updates": { - "exec": "(pacman -Qu ; paru -Qua) | wc -l", - "interval": 7200, - "format": " {}" - }, - "custom/weather" : { - "tooltip" : true, - "format" : "{}", - "interval" : 30, - "exec" : "~/.config/waybar/scripts/waybar-wttr.py", - "return-type" : "json" - }, - "tray": { - "icon-size": 13, - "spacing": 10 - }, - "clock": { - "format": "{: %R %d/%m}", - "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>" - }, - "backlight": { - "device": "intel_backlight", - "format": "{icon} {percent}%", - "format-icons": ["", "", ""], - "on-scroll-up": "brightnessctl set 1%+", - "on-scroll-down": "brightnessctl set 1%-", - "min-length": 6 - }, - "battery": { - "states": { - "good": 95, - "warning": 30, - "critical": 20 - }, - "format": "{icon} {capacity}%", - "format-charging": " {capacity}%", - "format-plugged": " {capacity}%", - "format-alt": "{time} {icon}", - "format-icons": ["", "", "", "", "", "", "", "", "", "", ""] - }, - "pulseaudio": { - "format": "{icon} {volume}%", - "tooltip": false, - "format-muted": " Muted", - "on-click": "pamixer -t", - "on-scroll-up": "pamixer -i 5", - "on-scroll-down": "pamixer -d 5", - "scroll-step": 5, - "format-icons": { - "headphone": "", - "hands-free": "", - "headset": "", - "phone": "", - "portable": "", - "car": "", - "default": ["", "", ""] - } - }, - "custom/volume": { - "exec": "~/.config/waybar/scripts/sound.sh", - "interval": 1, - "format": " {}", - "tooltip": true - } - // "custom/pipewire": { - // "format": {}, - // "exec": "awk -F"[][]" '/Left:/ { print $2 }' <(amixer sget Master)", - // "interval": 10 - // }, -} |