From f3b7a6a33588ad425de02c4b841df19f30733e44 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 9 Jun 2025 19:43:34 +0000 Subject: reorganize programs, move functions to library, and remove the rest of hyprland (all sway now) --- .../home/environments/hyprland/waybar/config.nix | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 modules/desktop/home/environments/hyprland/waybar/config.nix (limited to 'modules/desktop/home/environments/hyprland/waybar/config.nix') diff --git a/modules/desktop/home/environments/hyprland/waybar/config.nix b/modules/desktop/home/environments/hyprland/waybar/config.nix deleted file mode 100644 index 7afa83c..0000000 --- a/modules/desktop/home/environments/hyprland/waybar/config.nix +++ /dev/null @@ -1,59 +0,0 @@ -{pkgs, ...}: { - spacing = 4; - modules-left = ["custom/launcher" "hyprland/workspaces"]; - modules-center = ["hyprland/window"]; - modules-right = ["bluetooth" "wireplumber" "battery" "clock" "custom/power"]; - - "custom/launcher" = { - format = " "; - on-click = "${pkgs.fuzzel}/bin/fuzzel"; - }; - "hyprland/workspaces" = { - disable-scroll = true; - all-outputs = true; - warp-on-scroll = false; - format = "{icon}"; - format-icons = { - "1" = ""; - "2" = "󰈹"; - "3" = "󰝚"; - "4" = "󰎚"; - "5" = ""; - }; - }; - "hyprland/window" = { - on-click = "hyprctl dispatch float"; - }; - "bluetooth" = { - format = ""; - format-connected = "󰂯 {device_alias}"; - }; - "battery" = { - format = "{icon} {capacity}%"; - format-alt = "{icon}"; - format-icons = [" " " " " " " " " "]; - }; - "wireplumber" = { - format = "{icon} {volume}%"; - format-alt = "{icon}"; - format-muted = "󰖁 {volume}%"; - format-icons.default = ["󰕿" "󰖀" "󰕾"]; - tooltip = false; - }; - "clock" = { - format = "{:%I:%M}"; - format-alt = "/{:%Y/%b/%d-%a}"; - tooltip = false; - }; - "custom/power" = { - format = " collin"; - tooltip = false; - menu = "on-click"; - menu-file = "${./power_menu.xml}"; - menu-actions = { - logout = "hyprctl dispatch exit"; - reboot = "reboot"; - shutdown = "poweroff"; - }; - }; -} -- cgit v1.3.1