fix: add validation to theme locations

This commit is contained in:
Nydragon 2024-06-27 19:53:52 +02:00
parent ab4f7ab638
commit 0f51f7ae88
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 10 additions and 4 deletions

View file

@ -76,7 +76,9 @@ lib.mkIf osConfig.programs.hyprland.enable {
};
windowrulev2 = [
"float,initialClass:(com.nextcloud.desktopclient.nextcloud)"
"bordercolor rgba(FF0000AA) rgba(88080877),fullscreen:1"
"float,initialClass:(org.keepassxc.KeePassXC)"
"workspace 2,initialClass:(firefox)"
"workspace 5,initialClass:(lollypop)"
];
# https://wiki.hyprland.org/Configuring/Variables/#animations

View file

@ -1,4 +1,8 @@
{ pkgs, ... }:
let
validatePath =
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
in
rec {
qt.platformTheme.name = "gtk";
@ -9,16 +13,16 @@ rec {
gtk = {
enable = true;
theme = {
name = "Catppuccin-Frappe-Compact-Lavender-Dark";
theme = rec {
name = validatePath "${package}/share/themes/catppuccin-frappe-lavender-compact+default";
package = pkgs.catppuccin-gtk.override {
accents = [ "lavender" ];
size = "compact";
variant = "frappe";
};
};
iconTheme = {
name = "Papirus-Dark";
iconTheme = rec {
name = validatePath "${package}/share/icons/Papirus-Dark";
package = pkgs.catppuccin-papirus-folders.override {
accent = "lavender";
flavor = "frappe";