Complete Waybar modules
This commit is contained in:
parent
b6125c2d8b
commit
41c397f190
1 changed files with 144 additions and 91 deletions
|
@ -5,41 +5,33 @@
|
|||
"modules-left": ["custom/menu", "sway/workspaces", "sway/window"],
|
||||
"modules-center": ["custom/wf-recorder", "sway/mode"],
|
||||
"modules-right": [
|
||||
"custom/scratchpad",
|
||||
"custom/playerctl",
|
||||
"custom/wlsunset",
|
||||
"idle_inhibitor",
|
||||
"custom/dunst",
|
||||
"sway/language",
|
||||
"custom/clipboard",
|
||||
"cpu",
|
||||
"memory",
|
||||
"battery",
|
||||
"network",
|
||||
"bluetooth",
|
||||
"pulseaudio",
|
||||
"clock",
|
||||
"custom/power",
|
||||
"tray"
|
||||
],
|
||||
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": true
|
||||
},
|
||||
|
||||
"sway/language": {
|
||||
"format": " {}",
|
||||
"min-length": 5,
|
||||
"tooltip": false,
|
||||
"on-click": "swaymsg input $(swaymsg -t get_inputs --raw | jq '[.[] | select(.type == \"keyboard\")][0] | .identifier') xkb_switch_layout next"
|
||||
},
|
||||
|
||||
"custom/menu": {
|
||||
"format": "",
|
||||
"on-click": "exec nwg-drawer",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>",
|
||||
"tooltip": false
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": true
|
||||
},
|
||||
|
||||
"sway/window": {
|
||||
|
@ -48,6 +40,68 @@
|
|||
"tooltip": true
|
||||
},
|
||||
|
||||
"custom/wf-recorder": {
|
||||
"interval": "once",
|
||||
"return-type": "json",
|
||||
"format": "{}",
|
||||
"tooltip-format": "{tooltip}",
|
||||
"exec": "echo '{\"class\": \"recording\",\"text\":\"\",\"tooltip\":\"press $mod+Esc to stop recording\"}'",
|
||||
"exec-if": "pgrep wf-recorder",
|
||||
"on-click": "killall -s SIGINT wf-recorder",
|
||||
"signal": 8
|
||||
},
|
||||
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"custom/scratchpad": {
|
||||
"interval": "once",
|
||||
"return-type": "json",
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"one": "",
|
||||
"many": ""
|
||||
},
|
||||
"exec": "/bin/bash /usr/share/sway/scripts/scratchpad.sh; pkill -RTMIN+7 waybar",
|
||||
"on-click": "swaymsg 'scratchpad show'",
|
||||
"signal": 7
|
||||
},
|
||||
|
||||
"custom/playerctl": {
|
||||
"interval": "once",
|
||||
"tooltip": true,
|
||||
"return-type": "json",
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"Playing": "",
|
||||
"Paused": ""
|
||||
},
|
||||
"exec": "playerctl metadata --format '{\"alt\": \"{{status}}\", \"tooltip\": \"{{playerName}}: {{markup_escape(title)}} - {{markup_escape(artist)}}\" }'",
|
||||
"on-click": "playerctl play-pause; pkill -RTMIN+5 waybar",
|
||||
"on-click-right": "playerctl next; pkill -RTMIN+5 waybar",
|
||||
"on-scroll-up": "playerctl position 10+; pkill -RTMIN+5 waybar",
|
||||
"on-scroll-down": "playerctl position 10-; pkill -RTMIN+5 waybar",
|
||||
"signal": 5
|
||||
},
|
||||
|
||||
"custom/wlsunset": {
|
||||
"interval": "once",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{tooltip}",
|
||||
"return-type": "json",
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"on": "",
|
||||
"off": ""
|
||||
},
|
||||
"exec": "fallback_latitude=50.1 fallback_longitude=8.7 latitude= longitude= /usr/share/sway/scripts/sunset.sh",
|
||||
"on-click": "/usr/share/sway/scripts/sunset.sh toggle; pkill -RTMIN+6 waybar",
|
||||
"exec-if": "/usr/share/sway/scripts/sunset.sh check",
|
||||
"signal": 6
|
||||
},
|
||||
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
|
@ -59,44 +113,29 @@
|
|||
"tooltip-format-deactivated": "power-saving enabled"
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"format": "{icon} {volume}% {format_source}",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-muted": " {format_source}",
|
||||
"format-source": " {volume}%",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"headset": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"tooltip-format": "{icon} {volume}% {format_source}",
|
||||
"on-click": "swaymsg exec \\$pulseaudio",
|
||||
"on-click-middle": "swaymsg exec \\$volume_mute",
|
||||
"on-click-right": "swaymsg exec pavucontrol",
|
||||
"on-scroll-up": "swaymsg exec \\$volume_up",
|
||||
"on-scroll-down": "swaymsg exec \\$volume_down"
|
||||
"custom/dunst": {
|
||||
"exec": "/usr/share/sway/scripts/dunst.sh",
|
||||
"on-click": "dunstctl set-paused toggle",
|
||||
"restart-interval": 1,
|
||||
},
|
||||
|
||||
"battery": {
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
"sway/language": {
|
||||
"format": " {}",
|
||||
"min-length": 5,
|
||||
"tooltip": false,
|
||||
"on-click": "swaymsg input $(swaymsg -t get_inputs --raw | jq '[.[] | select(.type == \"keyboard\")][0] | .identifier') xkb_switch_layout next"
|
||||
},
|
||||
|
||||
"network": {
|
||||
"format-wifi": " ({signalStrength}%)",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ifname} ({essid}): {ipaddr}",
|
||||
"on-click": "swaymsg exec \\$term_float nmtui"
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%e %b %H:%M}",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{:%d.%m.%Y %H:%M}",
|
||||
"interval": 5,
|
||||
"on-click": "swaymsg exec \\$calendar"
|
||||
"custom/clipboard": {
|
||||
"format": "",
|
||||
"interval": "once",
|
||||
"return-type": "json",
|
||||
"on-click": "swaymsg -q exec '$clipboard'; pkill -RTMIN+9 waybar",
|
||||
"on-click-right": "swaymsg -q exec '$clipboard-del'; pkill -RTMIN+9 waybar",
|
||||
"on-click-middle": "rm -f ~/.cache/cliphist/db; pkill -RTMIN+9 waybar",
|
||||
"exec": "printf '{\"tooltip\":\"%s\"}' $(cliphist list | wc -l)' item(s) in the clipboard\r(Mid click to clear)'",
|
||||
"exec-if": "[ -x \"$(command -v cliphist)\" ] && [ $(cliphist list | wc -l) -gt 0 ]",
|
||||
"signal": 9
|
||||
},
|
||||
|
||||
"cpu": {
|
||||
|
@ -120,32 +159,52 @@
|
|||
|
||||
},
|
||||
|
||||
"custom/wf-recorder": {
|
||||
"interval": "once",
|
||||
"return-type": "json",
|
||||
"format": "{}",
|
||||
"tooltip-format": "{tooltip}",
|
||||
"exec": "echo '{\"class\": \"recording\",\"text\":\"\",\"tooltip\":\"press $mod+Esc to stop recording\"}'",
|
||||
"exec-if": "pgrep wf-recorder",
|
||||
"on-click": "killall -s SIGINT wf-recorder",
|
||||
"signal": 8
|
||||
"battery": {
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
|
||||
"custom/playerctl": {
|
||||
"interval": "once",
|
||||
"tooltip": true,
|
||||
"return-type": "json",
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"Playing": "",
|
||||
"Paused": ""
|
||||
"network": {
|
||||
"format-wifi": " ({signalStrength}%)",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ifname} ({essid}): {ipaddr}",
|
||||
"on-click": "swaymsg exec \\$term_float nmtui"
|
||||
},
|
||||
"exec": "playerctl metadata --format '{\"alt\": \"{{status}}\", \"tooltip\": \"{{playerName}}: {{markup_escape(title)}} - {{markup_escape(artist)}}\" }'",
|
||||
"on-click": "playerctl play-pause; pkill -RTMIN+5 waybar",
|
||||
"on-click-right": "playerctl next; pkill -RTMIN+5 waybar",
|
||||
"on-scroll-up": "playerctl position 10+; pkill -RTMIN+5 waybar",
|
||||
"on-scroll-down": "playerctl position 10-; pkill -RTMIN+5 waybar",
|
||||
"signal": 5
|
||||
|
||||
"bluetooth": {
|
||||
"format": "",
|
||||
"format-disabled": "",
|
||||
"on-click": "swaymsg exec \\$bluetooth",
|
||||
"on-click-right": "rfkill toggle bluetooth",
|
||||
"tooltip-format": "{}"
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"format": "{icon} {volume}% {format_source}",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-muted": " {format_source}",
|
||||
"format-source": " {volume}%",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"headset": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"tooltip-format": "{icon} {volume}% {format_source}",
|
||||
"on-click": "swaymsg exec \\$pulseaudio",
|
||||
"on-click-middle": "swaymsg exec \\$volume_mute",
|
||||
"on-click-right": "swaymsg exec pavucontrol",
|
||||
"on-scroll-up": "swaymsg exec \\$volume_up",
|
||||
"on-scroll-down": "swaymsg exec \\$volume_down"
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%e %b %H:%M}",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{:%d.%m.%Y %H:%M}",
|
||||
"interval": 5,
|
||||
"on-click": "swaymsg exec \\$calendar"
|
||||
},
|
||||
|
||||
"custom/power": {
|
||||
|
@ -153,12 +212,6 @@
|
|||
"on-click": "nwg-bar -x"
|
||||
},
|
||||
|
||||
"custom/dunst": {
|
||||
"exec": "/usr/share/sway/scripts/dunst.sh",
|
||||
"on-click": "dunstctl set-paused toggle",
|
||||
"restart-interval": 1,
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"icon-size": 21,
|
||||
"spacing": 10
|
||||
|
|
Loading…
Add table
Reference in a new issue