diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-01-27 12:55:40 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-01-27 12:55:40 +0900 |
| commit | 3f6c29f945d87974184d52b3de9943d75d17ee04 (patch) | |
| tree | a74611bde87c92fe3551ee8baa0d41d7b5689ea8 /config/waybar/ModulesVertical | |
| parent | 1f972b97f3b853f71e182737416c1ad485e53381 (diff) | |
Separated vertical waybar modules; added waybar style Latte-Wallust v2 (continous bar)
Diffstat (limited to 'config/waybar/ModulesVertical')
| -rw-r--r-- | config/waybar/ModulesVertical | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/config/waybar/ModulesVertical b/config/waybar/ModulesVertical new file mode 100644 index 00000000..5dea07ef --- /dev/null +++ b/config/waybar/ModulesVertical @@ -0,0 +1,122 @@ +//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +/* Waybar Modules for vertical modules or vertical layout */ + +/* NOTE: hyprland-workspaces, Custom Modules & Groups on a separate files */ + +{ + +"temperature#vertical": { + "interval": 10, + "tooltip": true, + "hwmon-path": [ + "/sys/class/hwmon/hwmon1/temp1_input", + "/sys/class/thermal/thermal_zone0/temp" + ], + //"thermal-zone": 0, + "critical-threshold": 80, + "format-critical": "{icon}\n{temperatureC}°C", + "format": " {icon}", + "format-icons": [ + "" + ], + "on-click-right": "kitty --title nvtop sh -c 'nvtop'" +}, + +"backlight#vertical": { + "interval": 2, + "rotate": 1, + "format": "{icon}", + //"format-icons": ["", "", ""], + "format-icons": [ + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" + ], + "on-click": "", + "on-click-middle": "", + "on-click-right": "", + "on-update": "", + "on-scroll-up": "$HOME/.config/hypr/scripts/Brightness.sh --inc", + "on-scroll-down": "$HOME/.config/hypr/scripts/Brightness.sh --dec", + "smooth-scrolling-threshold": 1, + "tooltip-format": "backlight {percent}%", +}, + +"clock#vertical": { + "format": "\n{:%H\n%M\n%S\n\n \n%d\n%m\n%y}", + "interval": 1, + //"format": "\n{:%I\n%M\n%p\n\n \n%d\n%m\n%y}", + "tooltip": true, + "tooltip-format": "{calendar}", + "calendar": { + "mode": "year", + "mode-mon-col": 3, + "format": { + "today": "<span color='#0dbc79'>{}</span>", + } + } +}, + +"cpu#vertical": { + "format": "\n{usage}%", + "interval": 1, + "on-click-right": "gnome-system-monitor", +}, + +"memory#vertical": { + "interval": 10, + "format": "\n{percentage}%", + "format-alt": "\n{used:0.1f}G", + "format-alt-click": "click", + "tooltip": true, + "tooltip-format": "{used:0.1f}GB/{total:0.1f}G", + "on-click-right": "kitty --title btop sh -c 'btop'", +}, + +"pulseaudio#vertical": { + "format": "{icon}", + "format-bluetooth": "", + "format-muted": "", + "format-icons": { + "headphone": "", + "hands-free": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": [ + "", "", "", "" + ], + "tooltip-format": "{icon} {desc} | {volume}%", + "ignored-sinks": [ + "Easy Effects Sink" + ], + }, + "scroll-step": 5.0, + "on-click": "$HOME/.config/hypr/scripts/Volume.sh --toggle", + "on-click-right": "pavucontrol -t 3", + "on-scroll-up": "$HOME/.config/hypr/scripts/Volume.sh --inc", + "on-scroll-down": "$HOME/.config/hypr/scripts/Volume.sh --dec", + "tooltip-format": "{icon} {desc} | {volume}%", + "smooth-scrolling-threshold": 1, +}, + +"pulseaudio#microphone_vertical": { + "format": "{format_source}", + "format-source": "", + "format-source-muted": "", + "on-click-right": "pavucontrol", + "on-click": "$HOME/.config/hypr/scripts/Volume.sh --toggle-mic", + "on-scroll-up": "$HOME/.config/hypr/scripts/Volume.sh --mic-inc", + "on-scroll-down": "$HOME/.config/hypr/scripts/Volume.sh --mic-dec", + "max-volume": 100, + "tooltip": true, + "tooltip-format": "{source_desc} | {source_volume}%", +}, + +"custom/power_vertical": { + "format": "⏻", + "on-click": "$HOME/.config/hypr/scripts/Wlogout.sh", + "on-click-right": "$HOME/.config/hypr/scripts/ChangeBlur.sh", + "tooltip": true, + "tooltip-format": "Left Click: Logout Menu\nRight Click: Change Blur", +}, +} |
