diff options
| author | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-02-23 15:03:10 -0500 |
|---|---|---|
| committer | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-02-23 15:03:10 -0500 |
| commit | 36a274dbc066068ff25b839e21ce3b82ec292c88 (patch) | |
| tree | 7e3de8bafab79cfa86c93f467413b8f43273a8a5 /waybar-vert/dot-config/waybar/config.jsonc | |
| parent | b29aab34dff6b76fd8eb067d51d2fe41be594616 (diff) | |
Diffstat (limited to 'waybar-vert/dot-config/waybar/config.jsonc')
| -rw-r--r-- | waybar-vert/dot-config/waybar/config.jsonc | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/waybar-vert/dot-config/waybar/config.jsonc b/waybar-vert/dot-config/waybar/config.jsonc new file mode 100644 index 0000000..8788765 --- /dev/null +++ b/waybar-vert/dot-config/waybar/config.jsonc @@ -0,0 +1,136 @@ +{ + "position": "right", + "exclusive": false, + "layer": "top", + "margin": "5 2 5 0", + // "height": 18, + "spacing": 5, + "reload_style_on_change": true, + "modules-left": [ + ], + "modules-right": [ + ], + "modules-center": [ + "niri/workspaces", + "custom/weather", + "idle_inhibitor", + "wireplumber", + "network", + "power-profiles-daemon", + "backlight", + "niri/language", + "battery", + "tray", + "clock" + ], + "idle_inhibitor": { + "format": "{icon}", + "format-icons": { + "activated": "", + "deactivated": "" + } + }, + "tray": { + "icon-size": 12, + "spacing": 5 + }, + "clock": { + "interval": 60, + "format": "{:%a\n%d\n%b\n\n%H\n%M}", + "tooltip-format": "<big>{:%Y %B}</big>\n<tt>{calendar}</tt>", + "justify": "center" + }, + "backlight": { + "format": "{icon}", + "format-icons": [ + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "tooltip-format": "{percent}%" + }, + "battery": { + "states": { + "warning": 30, + "critical": 10 + }, + "format": "{icon}\n{capacity}", + "format-full": "{icon}", + "format-charging": "\n{capacity}%", + "format-plugged": "", + "format-icons": [ + "", + "", + "", + "", + "" + ], + "justify": "center", + "tooltip-format": "{capacity}% {power}W ({time})" + }, + "power-profiles-daemon": { + "format": "{icon}", + "tooltip-format": "Power profile: {profile}\nDriver: {driver}", + "tooltip": true, + "format-icons": { + "performance": "", + "balanced": "", + "power-saver": "" + } + }, + "network": { + "format-wifi": "", + "format-ethernet": "", + "format-disconnected": "", + "tooltip-format-ethernet": "{ipaddr}/{cidr}", + "tooltip-format-wifi": "{essid} ({signalStrength}%) {gwaddr}", + "tooltip-format-disconnected": "Disconnected", + "format-linked": "-", + "justify": "center", + "on-click": "runapp -o -- alacritty -e impala" + }, + "wireplumber": { + "format": "{icon}", + "format-muted": "", + "on-click": "runapp -o -- alacritty -e bash -c 'wpctl status | less'", + "on-click-right": "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle && update-led-mute sink", + "max-volume": 100, + "scroll-step": 5, + "format-icons": { + "headphone": "", + "hands-free": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": [ + "", + "", + "" + ] + }, + "justify": "center" + }, + "niri/language": { + "format": "{}", + "format-en": "en", + "format-fa": "فا" + }, + "niri/window": { + "icon": true, + "icon-size": 13 + }, + "custom/weather": { + "format": "{}°", + "tooltip": true, + "interval": 3600, + "exec": "wttrbar", + "return-type": "json" + } +} |
