diff --git a/home-manager/features/eww/config/eww.yuck b/home-manager/features/eww/config/eww.yuck index 9641ad5..aa632af 100644 --- a/home-manager/features/eww/config/eww.yuck +++ b/home-manager/features/eww/config/eww.yuck @@ -3,5 +3,4 @@ (include "./primary-statusbar.yuck") (include "./secondary-statusbar.yuck") (include "./system-monitor.yuck") -(include "./launcher.yuck") (include "./vertical-statusbar.yuck") diff --git a/home-manager/features/eww/config/launcher.yuck b/home-manager/features/eww/config/launcher.yuck deleted file mode 100644 index 898d0a4..0000000 --- a/home-manager/features/eww/config/launcher.yuck +++ /dev/null @@ -1,74 +0,0 @@ -(defwindow launcher - :monitor '[ "", "DP-2", 0 ]' - :geometry (geometry - :x "100px" - :y "100px" - :anchor "top left" - ) - :stacking "bottom" - :exclusive false - :focusable false - (box - :class "launcher-window stand-alone" - :orientation "v" - :spacing 4 - :visible { arraylength(jq(workspaces-json-dp2, "map(select(.active and (.has_windows | not)))")) > 0 } - (box - :orientation "v" - :halign "start" - :spacing 4 - :space-evenly false - (label - :text "Apps" - :halign "start" - ) - (box - :orientation "h" - :halign "start" - :spacing 4 - :space-evenly false - (button - :onclick "firefox" - (image - :class "launcher-icon" - :icon "firefox" - :icon-size "dialog" - ) - ) - ) - ) - (box - :orientation "v" - :halign "start" - :spacing 4 - :space-evenly false - (label - :text "Games" - :halign "start" - ) - (box - :orientation "h" - :halign "start" - :spacing 4 - :space-evenly false - (button - ;; :onclick "env LUTRIS_SKIP_INIT=1 lutris lutris:rungameid/1" - :onclick "/home/drew/.local/bin/wow.sh >/tmp/wow.log 2>&1" - (image - :class "launcher-icon" - :image-width 48 - :path "/home/drew/.local/share/icons/hicolor/128x128/apps/lutris_battlenet.png" - ) - ) - ;; (button - ;; :onclick "steam steam://rungameid/1145350" - ;; (image - ;; :class "launcher-icon" - ;; :icon "steam_icon_1145350" - ;; :icon-size "dialog" - ;; ) - ;;) - ) - ) - ) -) diff --git a/system/hosts/altair/drew.nix b/system/hosts/altair/drew.nix index c84f8de..b158b08 100644 --- a/system/hosts/altair/drew.nix +++ b/system/hosts/altair/drew.nix @@ -42,7 +42,7 @@ in wayland.windowManager.hyprland.settings = { exec-once = [ # Set up eww here because it's based on the monitor configuration - "sleep 2 && eww open-many primary-statusbar secondary-statusbar launcher" + "sleep 2 && eww open-many primary-statusbar secondary-statusbar" # Set DP-2 as the primary monitor, otherwise it defaults to DP-1 because it's first in the list. "xrandr --output DP-2 --primary" ];