diff options
Diffstat (limited to '.config/waybar')
| -rw-r--r-- | .config/waybar/config.jsonc | 14 | ||||
| -rw-r--r-- | .config/waybar/style.css | 1 | 
2 files changed, 15 insertions, 0 deletions
diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index aaad23e..a830c3f 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -23,6 +23,7 @@      "custom/mailbox",      "wireplumber#source",      "wireplumber#sink", +    "custom/mouse",      "clock",      // "custom/internet",      "tray" @@ -273,6 +274,19 @@      "on-click-right": "notify-send \"🎙️ Microphone volume module\" \"\\- Shows volume 🎙️,  if muted.\n- Middle click to mute.\n- Scroll to change.\""    }, +  "custom/mouse" : { +    "cursor": false, +    "tooltip": false, +    "format": "{}", +    "signal": 24, +    "exec" : "sb-mouse", +    "interval": 60, +    "on-click": "BLOCK_BUTTON=1 sb-mouse", +    "on-click-right": "BLOCK_BUTTON=3 sb-mouse", +    "on-click-middle": "pkill -RTMIN+24 waybar", +    "on-click-backward": "BLOCK_BUTTON=8 sb-mouse" +  }, +    "clock" : {      "tooltip": false,      "cursor": false, diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 72e4f21..3b48ec5 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -90,6 +90,7 @@ window#waybar.hidden {  #custom-media,  #custom-music,  #custom-recording, +#custom-mouse,  #custom-internet,  #image,  #tray,  |