From 145327e622abb7c2000bc65f17c0ef741c061358 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Wed, 25 Sep 2024 14:52:45 -0500 Subject: Set persistent workspaces on eDP-1 in waybar This was already being done on HDMI-A-1 and eDP-1, so now this is also done for eDP-1 to make it a little more cross-platform friendly. --- waybar/config | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'waybar/config') diff --git a/waybar/config b/waybar/config index e2dcc50..7a54e0c 100644 --- a/waybar/config +++ b/waybar/config @@ -40,8 +40,7 @@ "18": "9", }, "persistent-workspaces": { - "DP-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], - "HDMI-A-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], + "eDP-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], }, "on-scroll-up": "hyprctl dispatch split-workspace e+1", "on-scroll-down": "hyprctl dispatch split-workspace e-1", -- cgit v1.2.3 From a1ce3c5c49c810c56c4ccd0b6539f3646e7eaa2d Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 25 Apr 2025 19:20:51 -0500 Subject: Update waybar with pipewire and move tray left --- waybar/config | 23 ++++++----------------- waybar/style.css | 2 +- 2 files changed, 7 insertions(+), 18 deletions(-) (limited to 'waybar/config') diff --git a/waybar/config b/waybar/config index 7a54e0c..2717db9 100644 --- a/waybar/config +++ b/waybar/config @@ -11,7 +11,7 @@ "modules-left":[ "hyprland/workspaces", "custom/launcher", "hyprland/window"], "modules-center":[], - "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "temperature#cpu", "temperature#gpu", "backlight", "network", "clock", "tray", "custom/power"], + "modules-right":[ "tray", "mpd", "idle_inhibitor", "wireplumber", "cpu", "memory", "temperature#cpu", "temperature#gpu", "backlight", "network", "clock", "custom/power"], // Modules configuration @@ -135,24 +135,13 @@ "max-length": 22, "on-click-right": "bash ~/.config/rofi/wifi_menu/rofi_wifi_menu" }, - "pulseaudio": { + "wireplumber": { // "scroll-step": 1, // %, can be a float "format": "{volume}% {icon}", - "format-bluetooth": "{volume}% {icon}", - "format-bluetooth-muted": "{icon} {format_source}", - "format-muted": "{format_source}", - "format-source": "", - "format-source-muted": "", - "format-icons": { - "headphone": "", - "hands-free": "", - "headset": "", - "phone": "", - "portable": "", - "car": "", - "default": ["", "", ""] - }, - "on-click": "pavucontrol" + "format-muted": "{volume}% ", + "format-icons": ["", "", ""], + "on-click": "volsv -t", + "scroll-step": 0.1 }, "custom/launcher":{ "format": "", diff --git a/waybar/style.css b/waybar/style.css index 8fc3d0a..05af6ab 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -81,7 +81,7 @@ window#waybar.hidden { #temperature, #backlight, #network, -#pulseaudio, +#wireplumber, #custom-media, #custom-launcher, #custom-power, -- cgit v1.2.3