Compare commits

..

No commits in common. "e86c8eef5f419ecf92bf102dd086ceec4c6110a4" and "c8a476d2afefc4ea3da12cd5f1741edc0fe02c20" have entirely different histories.

2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
* { * {
all: unset; // Unsets everything so you can style everything from scratch all: unset; // Unsets everything so you can style everything from scratch
font-family: Agave Nerd Font Mono, sans-serif; font-family: Agave Nerd Font Mono, sans-serif;
font-size: 14pt; font-size: 17pt;
} }
tooltip { tooltip {
@ -9,7 +9,7 @@ tooltip {
border-width: 3px; border-width: 3px;
background: #1a1a1a; background: #1a1a1a;
color: #5018dd; color: #5018dd;
border-radius: 25px; border-radius: 35px;
} }

View File

@ -30,7 +30,7 @@
(metric :label "󰓃 " (metric :label "󰓃 "
:value volume :value volume
:onchange "pactl set-sink-volume @DEFAULT_SINK@ {}%" :onchange "pactl set-sink-volume @DEFAULT_SINK@ {}%"
:onclick "killall pavucontrol || hyprctl dispatch exec \[tag +mixer\] pavucontrol") :onclick "killall pavucontrol || hyprctl eval 'hl.dsp.exec_cmd(\"[tag +mixer] pavucontrol\")'")
) )
) )
@ -48,7 +48,7 @@
:orientation "h" :orientation "h"
:space-evenly false :space-evenly false
:halign "center" :halign "center"
:onclick "~/.config/scripts/workspacefocus/focusright.sh" :onclick "~/.config/scripts/workspacefocus/focusleft.sh"
{""} {""}
) )
@ -63,7 +63,7 @@
:orientation "h" :orientation "h"
:space-evenly false :space-evenly false
:halign "center" :halign "center"
:onclick "hyprctl dispatch killactive" :onclick "hyprctl dispatch 'hl.dsp.window.close()'"
{""} {""}
) )
(button :class "music" (button :class "music"
@ -116,14 +116,14 @@
(deflisten workspaces "hyprland-workspaces _") (deflisten workspaces "hyprland-workspaces _")
(defwidget workspaceWidget [monitor] (defwidget workspaceWidget [monitor]
(eventbox :onscroll "hyprctl dispatch workspace `echo {} | sed 's/up/+/\' | sed 's/down/-/'`1" (eventbox :onscroll "hyprctl eval \"hl.dsp.focus({workspace='$(echo {} | sed 's/up/r+/;s/down/r-/')1'})\""
(box :class "workspaces" (box :class "workspaces"
:space-evenly false :space-evenly false
:width 20 :width 20
(for i in {workspaces[monitor].workspaces} (for i in {workspaces[monitor].workspaces}
(button (button
:width 20 :width 20
:onclick "hyprctl dispatch workspace ${i.id}" :onclick "hyprctl eval 'hl.dsp.focus({workspace=${i.id}})'"
:class "${i.class}" :class "${i.class}"
{i.name == "special:magic" ? "󱂬" : "󱂬${i.name}"}))))) {i.name == "special:magic" ? "󱂬" : "󱂬${i.name}"})))))