diff --git a/hypr-configs/hyprland/eww/assets/scss/_modules.scss b/hypr-configs/hyprland/eww/assets/scss/_modules.scss index b0ae11b..acbcdfd 100644 --- a/hypr-configs/hyprland/eww/assets/scss/_modules.scss +++ b/hypr-configs/hyprland/eww/assets/scss/_modules.scss @@ -21,15 +21,17 @@ .workspaces { @extend .widget; - padding: 12px 6px; - - * { - transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 600ms; - } + padding: 12px; .workspace { - border-radius: 6px; - margin: 0px 6px; + transition: cubic-bezier(0.165, 0.84, 0.44, 1) 600ms; + border-radius: get-token(border-radius); + min-height: 16px; + + &.current { + min-height: 48px; + background-color: $accent; + } } .workspacething { diff --git a/hypr-configs/hyprland/eww/scripts/__pycache__/iconfetch.cpython-312.pyc b/hypr-configs/hyprland/eww/scripts/__pycache__/iconfetch.cpython-312.pyc index f66a0f9..38d996d 100644 Binary files a/hypr-configs/hyprland/eww/scripts/__pycache__/iconfetch.cpython-312.pyc and b/hypr-configs/hyprland/eww/scripts/__pycache__/iconfetch.cpython-312.pyc differ diff --git a/hypr-configs/hyprland/eww/src/-modules/_workspaces.yuck b/hypr-configs/hyprland/eww/src/-modules/_workspaces.yuck index 44b5135..08e8bf0 100644 --- a/hypr-configs/hyprland/eww/src/-modules/_workspaces.yuck +++ b/hypr-configs/hyprland/eww/src/-modules/_workspaces.yuck @@ -10,19 +10,11 @@ :space-evenly false :orientation "v" :spacing spacing-default + :vexpand true (for workspace in {workspacesJson} (button :onclick "hyprctl dispatch workspace ${workspace.id}" (box - :height 20 - :class "workspace ${workspace.id == currentWorkspace ? "workspacethingactive" : "workspacething"}" - - (revealer - :reveal { workspace.id == currentWorkspace} - :transition "slidedown" - :duration animation-duration-default - - (box - :height 40)))))))) + :class "workspace ${workspace.id == currentWorkspace ? "current" : "workspacething"}"))))))