hyprland_workspace_display

Crates.iohyprland_workspace_display
lib.rshyprland_workspace_display
version0.2.1
sourcesrc
created_at2023-06-30 08:57:42.013853
updated_at2023-06-30 09:01:51.591847
descriptionCommand line utility to display hyprland workspaces.
homepagehttps://github.com/d-hain/hyprland_workspace_display
repositoryhttps://github.com/d-hain/hyprland_workspace_display
max_upload_size
id904284
size25,444
David Hain (d-hain)

documentation

README

Hyprland Workspace Display

hyprspacedp

crates.io docs.rs

This is a utility for getting symbols for Hyprland workspaces.
Getting eww widgets (buttons in a box) for the workspaces is also possible and rather customizable.
Unicode icons are also supported.

If any features are missing or there are any bugs please open an issue.
Pull requests are also always welcome.

Info

Multiple monitors and special workspaces are not and WILL NOT be supported.
Except someone wants to make a pull request to add that functionality.

Examples

--help is your best friend.

Basic symbols

hyprspacedp --workspace-amount 10 \
            --empty-symbol o \
            --full-symbol 'O' \
            --active-symbol "α"

--workspace-amount can also be shortened to -n.

Output:

O α O O o o o o o o

Basic Eww widgets

hyprspacedp -n 10 \
            --empty-symbol o \
            --full-symbol 'O' \
            --active-symbol "α" \
            --eww-widgets

Output:

(box (button 'O')(button 'α')(button 'O')(button 'O')(button 'o')(button 'o')(button 'o')(button 'o')(button 'o')(button 'o'))

Eww widgets with box customizations

hyprspacedp -n 10 \
            --empty-symbol o \
            --full-symbol 'O' \
            --active-symbol "α" \
            --eww-widgets \
            --eww-class-box workspaces \
            --eww-orientation vertical

Formatted Output:
(normally it is all in one line)

(box 
  :class 'workspaces' 
  :orientation 'vertical' 
  (button 'O')(button 'α')(button 'O')(button 'O')(button 'o')(button 'o')(button 'o')(button 'o')(button 'o')(button 'o'))

Eww widgets with button customizations

hyprspacedp -n 10 \
            --empty-symbol o \
            --full-symbol O \
            --active-symbol α \
            --eww-widgets \
            --eww-class-button "workspac -{NR}" \
            --eww-onclick "hyprctl dispatch workspace {NR}"

Formatted Output:
(normally it is all in one line)

(box 
(button 
  :class 'workspace-1' 
  :onclick 'hyprctl dispatch workspace 1'
  'O')
(button 
  :class 'workspace-2' 
  :onclick 'hyprctl dispatch workspace 2' 
  'α')
(button :class 'workspace-3' :onclick 'hyprctl dispatch workspace 3' 'O')(button :class 'workspace-4' :onclick 'hyprctl dispatch workspace 4' 'O')(button :class 'workspace-5' :onclick 'hyprctl dispatch workspace 5' 'o')(button :class 'workspace-6' :onclick 'hyprctl dispatch workspace 6' 'o')(button :class 'workspace-7' :onclick 'hyprctl dispatch workspace 7' 'o')(button :class 'workspace-8' :onclick 'hyprctl dispatch workspace 8' 'o')(button :class 'workspace-9' :onclick 'hyprctl dispatch workspace 9' 'o')(button :class 'workspace-10' :onclick 'hyprctl dispatch workspace 10' 'o'))
Commit count: 22

cargo fmt