diff options
Diffstat (limited to '.config/waybar/config~')
-rw-r--r-- | .config/waybar/config~ | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/.config/waybar/config~ b/.config/waybar/config~ new file mode 100644 index 0000000..058f127 --- /dev/null +++ b/.config/waybar/config~ @@ -0,0 +1,137 @@ +{ + // "layer": "top", // Waybar at top layer + // "position": "bottom", // Waybar position (top|bottom|left|right) + "height": 30, // Waybar height (to be removed for auto height) + // "width": 1280, // Waybar width + "spacing": 4, // Gaps between modules (4px) + // Choose the order of the modules + "modules-left": ["clock", "custom/df", "custom/volume", "sway/mode", "tray"], + "modules-center": ["sway/workspaces"], + "modules-right": ["cpu", "memory", "temperature", "battery"], + // Modules configuration + // "sway/workspaces": { + // "disable-scroll": true, + // "all-outputs": true, + // "format": "{name}: {icon}", + // "format-icons": { + // "1": "", + // "2": "", + // "3": "", + // "4": "", + // "5": "", + // "urgent": "", + // "focused": "", + // "default": "" + // } + // }, + + "sway/workspaces": { + "format-icons": { + "1": "", + "2": "", + "3": "", + "4": "", + "5": "", + "default": "" + }, + "format": "{icon}", + "persistent_workspaces": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [] + } +}, + + "sway/mode": { + "format": "<span style=\"italic\">{}</span>" + }, + + "tray": { + // "icon-size": 21, + "spacing": 10 + }, + "clock": { + "timezone": "Europe/Helsinki", + "format": "{:%Y-%m-%d %H:%M}", + "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", + "format-alt": "{:%Y-%m-%d}", + }, + "cpu": { + "format": "🍟 {usage}%", + "tooltip": false + }, + "memory": { + "format": "🐐 {}%" + }, + "temperature": { + "thermal-zone": 2, + // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", + "critical-threshold": 100, + // "format-critical": "{temperatureC}°C {icon}", + "format": "🔥 {temperatureC}°C", + }, + + "battery": { + "states": { + // "good": 95, + "warning": 30, + "critical": 15 + }, + "format": "🔋 {capacity}%", + }, + + "network": { + // "interface": "wlp2*", // (Optional) To force the use of this interface + "format-wifi": "{essid} ({signalStrength}%) ", + "format-ethernet": "{ipaddr}/{cidr} ", + "tooltip-format": "{ifname} via {gwaddr} ", + "format-linked": "{ifname} (No IP) ", + "format-disconnected": "Disconnected ⚠", + "format-alt": "{ifname}: {ipaddr}/{cidr}" + }, + "pulseaudio": { + // "scroll-step": 1, // %, can be a float + "format": "{volume}% {icon} {format_source}", + "format-bluetooth": "{volume}% {icon} {format_source}", + "format-bluetooth-muted": " {icon} {format_source}", + "format-muted": " {format_source}", + "format-source": "{volume}% ", + "format-source-muted": "", + "format-icons": { + "headphone": "", + "hands-free": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": ["", "", ""] + }, + "on-click": "pavucontrol" + }, + "custom/media": { + "format": "{icon} {}", + "return-type": "json", + "max-length": 40, + "format-icons": { + "spotify": "", + "default": "🎜" + }, + "escape": true, + "exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder + // "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name + }, + "custom/volume": { + "format": "{}", + "exec": "$HOME/.config/waybar/getvolume.sh", + "interval": 1 + }, + +"custom/df": { + "format": "{}", + "exec": "/bin/sh $HOME/.config/sway/status.sh", + "interval": 60 + } +} + |