diff options
author | ZachIR <zachir@librem.one> | 2025-07-26 11:19:47 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-26 11:19:47 -0500 |
commit | ff8f57ea7ac4d850adcb3e2ab0bc625bd9552222 (patch) | |
tree | 589cc72142a7876e84a86a5f0bb7b5e8e945e5ad /waybar | |
parent | 0cbbcd5764bedfc0a583d204eb935587a94740b4 (diff) |
Add configs to use scroll
Diffstat (limited to 'waybar')
-rw-r--r-- | waybar/config | 21 | ||||
-rw-r--r-- | waybar/style.css | 4 |
2 files changed, 25 insertions, 0 deletions
diff --git a/waybar/config b/waybar/config index 313aed7..74d0fee 100644 --- a/waybar/config +++ b/waybar/config @@ -15,6 +15,21 @@ // Modules configuration + "sway/workspaces": { + "all-outputs": false, + "persistent-workspaces": { + "1": ["eDP-1"], + "2": ["eDP-1"], + "3": ["eDP-1"], + "4": ["eDP-1"], + "5": ["eDP-1"], + "6": ["eDP-1"], + "7": ["eDP-1"], + "8": ["eDP-1"], + "9": ["eDP-1"], + }, + "format": "{value}", + }, "niri/workspaces": { "format": "{value}", "all-outputs": false, @@ -51,6 +66,12 @@ "on-scroll-down": "hyprctl dispatch split-workspace e-1", "on-click": "activate" }, + "sway/window": { + "separate-outputs": true, + "icon": true, + "format": "{title}", + "expand": true + }, "niri/window": { "separate-outputs": true, "icon": true, diff --git a/waybar/style.css b/waybar/style.css index 59f741f..9398381 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -56,6 +56,10 @@ window#waybar.hidden { background: #198844; } +#workspaces button.focused { + background: #198844; +} + /* #workspaces button.active:hover { background: #6e3c85; |