Replies: 9 comments 8 replies
-
|
You'd have to script your own I think. |
Beta Was this translation helpful? Give feedback.
-
|
I'm working on a script for this, only in the early stages, but should have something soon (TM) https://github.com/Person1873/hypr-taskbar |
Beta Was this translation helpful? Give feedback.
-
|
Ironbar has support for this with Hyprland out of box https://github.com/JakeStanger/ironbar |
Beta Was this translation helpful? Give feedback.
-
|
It would appear that the best solution for now is to either not use waybar for listing windows (only for a status bar) and use rofi/wofi/dmenu/fzf etc as a switcher. |
Beta Was this translation helpful? Give feedback.
-
|
Also looking for this. Would be really nice to have workspaces and tasks as a single widget (where windows are grouped by workspace and clicking the icon brings you to that workspace and focuses the window). Do any workarounds exist currently? It's been a year since last comment here... |
Beta Was this translation helpful? Give feedback.
-
|
nwg-panel supports grouping windows by workspace. |
Beta Was this translation helpful? Give feedback.
-
|
I think it's possible out of the box with waybar. See here https://www.lorenzobettini.it/2024/08/waybar-workspaces-in-hyprland/#google_vignette |
Beta Was this translation helpful? Give feedback.
-
|
probably already said but there is built in taskbar module for waybar: for example: |
Beta Was this translation helpful? Give feedback.
-
|
If you want to display app icons, it was impossible out of the box, even with regular "custom/..." modules. So, I vibe coded my own module in C using the CFFI module. Check it out here: hypr-ws-apps In short, you can create a config and specify from which workspace to display apps. Either provide a workspace index (number) or name (string). {
"modules-center": ["cffi/hypr-ws-apps"],
"cffi/hypr-ws-apps": {
"module_path": "/home/<user>/.config/waybar/cffi/libhypr_ws_apps.so",
"workspace": "1",
"icon_size": 16,
"spacing": 8,
"max_icons": 12,
"show_empty": false,
"tooltip": true
}
}You can download my |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Does anybody use a taskbar that groups tasks according to workspaces?
I was trying to achieve this using waybar. However, the
wlr/taskbarmodule does not have that ability (Waybar#1278).Would it be possible to create a module like that for Hyprland (something like
hyprland/ws-taskbar)?Beta Was this translation helpful? Give feedback.
All reactions