summaryrefslogtreecommitdiff
path: root/.config/waybar/config
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-03-26 19:13:48 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-03-26 19:13:48 -0400
commit060d26a571bb3561d6198a7812b5ecdc9d9830d0 (patch)
tree5d5f71f495583a55add4f435f3e2cf2cf27f0560 /.config/waybar/config
parent2fba5da98a48fe1d562b6c015dda4a6fb4baccfe (diff)
New Hyprland/Waybar/Kitty
Diffstat (limited to '.config/waybar/config')
-rw-r--r--.config/waybar/config68
1 files changed, 68 insertions, 0 deletions
diff --git a/.config/waybar/config b/.config/waybar/config
new file mode 100644
index 0000000..5f94099
--- /dev/null
+++ b/.config/waybar/config
@@ -0,0 +1,68 @@
+{
+ "layer": "top",
+ "modules-left": ["custom/launcher","cpu","memory","tray"],
+ "modules-center": ["hyprland/workspaces"],
+ "modules-right": ["backlight","pulseaudio","clock", "battery","custom/power"],
+
+ "pulseaudio": {
+ "tooltip": false,
+ "scroll-step": 5,
+ "format": "{icon} {volume}%",
+ "format-muted": "{icon} {volume}%",
+ "on-click":"pactl set-sink-mute @DEFAULT_SINK@ toggle",
+ "format-icons": {
+ "default": ["", "", ""]
+ }
+ },
+
+ "hyprland/workspaces": {
+ "format": "{icon}",
+ "on-scroll-up": "hyprctl dispatch workspace e+1",
+ "on-scroll-down": "hyprctl dispatch workspace e-1"
+ },
+ "network": {
+ "tooltip": false,
+ "format-wifi": " {essid}",
+ "format-ethernet": ""
+ },
+ "backlight": {
+ "tooltip": false,
+ "format": " {}%",
+ "interval":1,
+ "on-scroll-up": "light -A 5",
+ "on-scroll-down": "light -U 5"
+ },
+ "battery": {
+ "states": {
+ "good": 95,
+ "warning": 30,
+ "critical": 20
+ },
+ "format": "{icon} {capacity}%",
+ "format-charging": " {capacity}%",
+ "format-plugged": " {capacity}%",
+ "format-alt": "{time} {icon}",
+ "format-icons": ["", "", "", "", ""]
+ },
+ "tray":{
+ "icon-size":18,
+ "spacing": 10
+ },
+ "clock": {
+ "format": "{: %I:%M %p %m/%d/%Y}"
+ },
+ "cpu": {
+ "interval": 15,
+ "format": " {}%",
+ "max-length": 10
+ },
+ "memory": {
+ "interval": 30,
+ "format": " {}%",
+ "max-length": 10
+ },
+ "custom/power":{
+ "format": " ",
+ "on-click": "zsh ~/.local/bin/shutdownPrompt",
+ }
+}