diff --git a/hosts/configuration.nix b/hosts/configuration.nix index a1f914a..d7f8bd3 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -131,6 +131,7 @@ signal-desktop alacritty librewolf + zathura # File Management unzip # Zip Files diff --git a/modules/desktops/awesome.nix b/modules/desktops/awesome.nix index cdb87bd..7c6c8d6 100644 --- a/modules/desktops/awesome.nix +++ b/modules/desktops/awesome.nix @@ -39,10 +39,22 @@ with lib; { source = ../../rsc/config/awesome; recursive = true; }; - home.file.".config/picom/"={ + home.file.".config/picom/" = { source = ../../rsc/config/picom; recursive = true; }; + home.file.".config/rofi" = { + source = ../../rsc/config/rofi; + recursive = true; + }; + home.file.".config/flameshot" = { + source = ../../rsc/config/flameshot; + recursive = true; + }; + home.file.".config/zathura" = { + source = ../../rsc/config/zathura; + recursive = true; + }; }; environment = { systemPackages = with pkgs; @@ -52,6 +64,7 @@ with lib; { redshift xbindkeys clipmenu + flameshot ] ++ (with unstable; []); }; diff --git a/modules/desktops/kde.nix b/modules/desktops/kde.nix index 5064e52..c16e955 100644 --- a/modules/desktops/kde.nix +++ b/modules/desktops/kde.nix @@ -1,7 +1,6 @@ # # KDE Plasma 5 Configuration # Enable with "kde.enable = true;" -# Get the plasma configs in a file with $ nix run github:pjones/plasma-manager > # { config, diff --git a/rsc/config/awesome/rc.lua b/rsc/config/awesome/rc.lua index 1da777b..ca62f04 100644 --- a/rsc/config/awesome/rc.lua +++ b/rsc/config/awesome/rc.lua @@ -345,7 +345,7 @@ end, { description = "Rofi powermenu", group = "launcher" }), awful.key({modkey}, "space", function() - awful.util.spawn("/home/ghoscht/.config/rofi/launchers/type-2/launcher.sh") + awful.util.spawn("rofi -i -show drun -modi drun -show-icons") end, { description = "Rofi application menu", group = "launcher" diff --git a/rsc/config/zathura/catppuccin-mocha b/rsc/config/zathura/catppuccin-mocha new file mode 100644 index 0000000..e0faa05 --- /dev/null +++ b/rsc/config/zathura/catppuccin-mocha @@ -0,0 +1,37 @@ +set default-fg "#CDD6F4" +set default-bg "#1E1E2E" + +set completion-bg "#313244" +set completion-fg "#CDD6F4" +set completion-highlight-bg "#575268" +set completion-highlight-fg "#CDD6F4" +set completion-group-bg "#313244" +set completion-group-fg "#89B4FA" + +set statusbar-fg "#CDD6F4" +set statusbar-bg "#313244" + +set notification-bg "#313244" +set notification-fg "#CDD6F4" +set notification-error-bg "#313244" +set notification-error-fg "#F38BA8" +set notification-warning-bg "#313244" +set notification-warning-fg "#FAE3B0" + +set inputbar-fg "#CDD6F4" +set inputbar-bg "#313244" + +set recolor-lightcolor "#1E1E2E" +set recolor-darkcolor "#CDD6F4" + +set index-fg "#CDD6F4" +set index-bg "#1E1E2E" +set index-active-fg "#CDD6F4" +set index-active-bg "#313244" + +set render-loading-bg "#1E1E2E" +set render-loading-fg "#CDD6F4" + +set highlight-color "#575268" +set highlight-fg "#F5C2E7" +set highlight-active-color "#F5C2E7" diff --git a/rsc/config/zathura/zathurarc b/rsc/config/zathura/zathurarc new file mode 100644 index 0000000..ba37d4c --- /dev/null +++ b/rsc/config/zathura/zathurarc @@ -0,0 +1,3 @@ +include catppuccin-mocha +set selection-clipboard clipboard +set recolor true