1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-18 12:38:30 +02:00

xsession.pointerCursor: .icons file for AwesomeWM (#2084)

This commit is contained in:
Christopher League 2021-06-07 18:00:31 -04:00 committed by GitHub
parent 06a98ba0fd
commit aa36e2d6b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,5 +79,14 @@ in {
"gtk-cursor-theme-size" = cfg.size;
};
# Set name in icons theme, for compatibility with AwesomeWM etc. See:
# https://github.com/nix-community/home-manager/issues/2081
# https://wiki.archlinux.org/title/Cursor_themes#XDG_specification
home.file.".icons/default/index.theme".text = ''
[icon theme]
Name=Default
Comment=Default Cursor Theme
Inherits=${cfg.name}
'';
};
}