From 8cbadb61604667b407b53ee1258433994fa4765a Mon Sep 17 00:00:00 2001 From: coasteen Date: Thu, 9 Jul 2026 10:42:28 +0330 Subject: init --- config/waybar/config.jsonc | 107 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100755 config/waybar/config.jsonc (limited to 'config/waybar/config.jsonc') diff --git a/config/waybar/config.jsonc b/config/waybar/config.jsonc new file mode 100755 index 0000000..6907e47 --- /dev/null +++ b/config/waybar/config.jsonc @@ -0,0 +1,107 @@ +{ + "position": "top", +// "output": "HDMI-A-1", + "layer": "top", + "modules-left": [ +// "custom/distro", + "niri/workspaces", + "niri/window" + ], + "modules-center": [ + ], + "modules-right": [ + "network", + "pulseaudio", + "clock" + ], + "pulseaudio": { + "tooltip": false, + "scroll-step": 5, + "format": " {volume}%", + "format-muted": "muted", + "format-icons": { + "default": [ + "", + "", + "" + ] + } + }, + "privacy": { + "icon-spacing": 10, + "icon-size": 18, + "transition-duration": 250, + "tooltip": false, + "modules": [ + { + "type": "screenshare", + "tooltip": true, + "tooltip-icon-size": 24 + }, + { + "type": "audio-out", + "tooltip": true, + "tooltip-icon-size": 24 + }, + { + "type": "audio-in", + "tooltip": true, + "tooltip-icon-size": 24 + } + ] + }, + "custom/distro": { + "format": "󱄅", + "on-click": "sh -c 'rofi -show drun -config ~/.config/rofi/gruvbox.rasi'", + "tooltip": false + }, + "bluetooth": { + "format": " {status}", + "format-connected": " CONN", + "tooltip": true, + "on-click": "footclient -e bluetoothctl", + "tooltip-format-connected": "{device_alias}" + }, + "clock": { + "format": "󰥔 {:%I:%M %p}", + "tooltip": true, + "tooltip-format": "{:%a, %b %d, :%I:%M:%S %p}" + }, + "niri/workspaces": { + "format": "●", + "active-format": "{icon} ●", + "window-icons": true, + "icon-size": 20 + }, + "niri/window": { + "icon": false, + "icon-size": 20 + }, + "niri/mode": { + "format": "{}" + }, + "network": { + // "interface": "wlo1", + "interface": "eno1", + "format-wifi": "󰖩 {essid}", + "format-ethernet": "󰛳 {ipaddr}/{cidr}", + "format-disconnected": "󱚼 disconnected", + "tooltip": true, + "tooltip-format": "Click to copy", + "max-length": 50, + "on-click": "sh -c 'ip addr show eno1 | grep \"inet \" | awk \"{print \\$2}\" | sed \"s#/.*##\" | wl-copy'" + }, + "battery": { + "format": "BAT {capacity}%", + "interval": 10, + "states": { + "warning": 20, + "critical": 10 + }, + "format-time": "{H}:{m}", + "format-charging": "BAT {capacity}%", + "format-discharging": "BAT {capacity}%", + "tooltip-format": "{power}W, {cycles} cycles" + } +} + -- cgit v1.2.3