From a3e1eee22e9603e1a184023ad3d848dae844e930 Mon Sep 17 00:00:00 2001 From: veneficium Date: Sat, 10 Jan 2026 17:54:41 +0100 Subject: [PATCH] move quickshell config --- modules/home/niri/niri.nix | 8 ++++---- modules/home/quickshell/quickshell.nix | 10 ++++++++++ modules/home/{niri => quickshell}/shell.qml | 4 ++-- 3 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 modules/home/quickshell/quickshell.nix rename modules/home/{niri => quickshell}/shell.qml (98%) diff --git a/modules/home/niri/niri.nix b/modules/home/niri/niri.nix index 0235b1f..0d5a170 100644 --- a/modules/home/niri/niri.nix +++ b/modules/home/niri/niri.nix @@ -17,10 +17,10 @@ programs.quickshell = { enable = true; - configs = { - "default" = ./shell.qml; - }; - activeConfig = "default"; + # configs = { + # "default" = ./shell.qml; + # }; + # activeConfig = "default"; }; services.mako = { diff --git a/modules/home/quickshell/quickshell.nix b/modules/home/quickshell/quickshell.nix new file mode 100644 index 0000000..61a825c --- /dev/null +++ b/modules/home/quickshell/quickshell.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + programs.quickshell = { + enable = true; + configs = { + "default" = ./shell.qml; + }; + activeConfig = "default"; + }; +} diff --git a/modules/home/niri/shell.qml b/modules/home/quickshell/shell.qml similarity index 98% rename from modules/home/niri/shell.qml rename to modules/home/quickshell/shell.qml index 2b84ae8..9c0b8dd 100644 --- a/modules/home/niri/shell.qml +++ b/modules/home/quickshell/shell.qml @@ -62,8 +62,8 @@ PanelWindow { anchor.rect.y: tray_item.height anchor.rect.x: tray_item.width visible: true - width: 1 - height: 1 + implicitWidth: 1 + implicitHeight: 1 color: "transparent" }