From bd71229ba9d5518141dfa9fdde516d41c1aedb92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sat, 30 Dec 2023 18:41:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20(home/wayland)=20move=20eww's=20?= =?UTF-8?q?config=20in=20its=20own=20folder=20(this=20way=20`default.nix`?= =?UTF-8?q?=20won't=20be=20copied=20inside=20the=20configDir)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/wayland/eww/{ => config}/eww.scss | 0 home/wayland/eww/{ => config}/eww.yuck | 0 home/wayland/eww/{ => config}/mocha.scss | 0 home/wayland/eww/{ => config}/scripts/get-active-workspace | 0 home/wayland/eww/{ => config}/scripts/get-workspaces | 0 home/wayland/eww/default.nix | 2 +- 6 files changed, 1 insertion(+), 1 deletion(-) rename home/wayland/eww/{ => config}/eww.scss (100%) rename home/wayland/eww/{ => config}/eww.yuck (100%) rename home/wayland/eww/{ => config}/mocha.scss (100%) rename home/wayland/eww/{ => config}/scripts/get-active-workspace (100%) rename home/wayland/eww/{ => config}/scripts/get-workspaces (100%) diff --git a/home/wayland/eww/eww.scss b/home/wayland/eww/config/eww.scss similarity index 100% rename from home/wayland/eww/eww.scss rename to home/wayland/eww/config/eww.scss diff --git a/home/wayland/eww/eww.yuck b/home/wayland/eww/config/eww.yuck similarity index 100% rename from home/wayland/eww/eww.yuck rename to home/wayland/eww/config/eww.yuck diff --git a/home/wayland/eww/mocha.scss b/home/wayland/eww/config/mocha.scss similarity index 100% rename from home/wayland/eww/mocha.scss rename to home/wayland/eww/config/mocha.scss diff --git a/home/wayland/eww/scripts/get-active-workspace b/home/wayland/eww/config/scripts/get-active-workspace similarity index 100% rename from home/wayland/eww/scripts/get-active-workspace rename to home/wayland/eww/config/scripts/get-active-workspace diff --git a/home/wayland/eww/scripts/get-workspaces b/home/wayland/eww/config/scripts/get-workspaces similarity index 100% rename from home/wayland/eww/scripts/get-workspaces rename to home/wayland/eww/config/scripts/get-workspaces diff --git a/home/wayland/eww/default.nix b/home/wayland/eww/default.nix index 8142d23..19f7ab3 100644 --- a/home/wayland/eww/default.nix +++ b/home/wayland/eww/default.nix @@ -2,6 +2,6 @@ programs.eww = { enable = true; package = pkgs.eww-wayland; - configDir = ./.; + configDir = ./config; }; }