fix: add validation to theme locations
This commit is contained in:
parent
ab4f7ab638
commit
0f51f7ae88
2 changed files with 10 additions and 4 deletions
|
@ -76,7 +76,9 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
};
|
};
|
||||||
windowrulev2 = [
|
windowrulev2 = [
|
||||||
"float,initialClass:(com.nextcloud.desktopclient.nextcloud)"
|
"float,initialClass:(com.nextcloud.desktopclient.nextcloud)"
|
||||||
|
"bordercolor rgba(FF0000AA) rgba(88080877),fullscreen:1"
|
||||||
"float,initialClass:(org.keepassxc.KeePassXC)"
|
"float,initialClass:(org.keepassxc.KeePassXC)"
|
||||||
|
"workspace 2,initialClass:(firefox)"
|
||||||
"workspace 5,initialClass:(lollypop)"
|
"workspace 5,initialClass:(lollypop)"
|
||||||
];
|
];
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
validatePath =
|
||||||
|
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
|
||||||
|
in
|
||||||
rec {
|
rec {
|
||||||
qt.platformTheme.name = "gtk";
|
qt.platformTheme.name = "gtk";
|
||||||
|
|
||||||
|
@ -9,16 +13,16 @@ rec {
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = {
|
theme = rec {
|
||||||
name = "Catppuccin-Frappe-Compact-Lavender-Dark";
|
name = validatePath "${package}/share/themes/catppuccin-frappe-lavender-compact+default";
|
||||||
package = pkgs.catppuccin-gtk.override {
|
package = pkgs.catppuccin-gtk.override {
|
||||||
accents = [ "lavender" ];
|
accents = [ "lavender" ];
|
||||||
size = "compact";
|
size = "compact";
|
||||||
variant = "frappe";
|
variant = "frappe";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
iconTheme = {
|
iconTheme = rec {
|
||||||
name = "Papirus-Dark";
|
name = validatePath "${package}/share/icons/Papirus-Dark";
|
||||||
package = pkgs.catppuccin-papirus-folders.override {
|
package = pkgs.catppuccin-papirus-folders.override {
|
||||||
accent = "lavender";
|
accent = "lavender";
|
||||||
flavor = "frappe";
|
flavor = "frappe";
|
||||||
|
|
Loading…
Add table
Reference in a new issue