2018-02-02 05:37:45 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.xsession.pointerCursor;
|
|
|
|
|
|
|
|
cursorType = types.submodule {
|
|
|
|
options = {
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
example = literalExample "pkgs.vanilla-dmz";
|
|
|
|
description = "Package providing the cursor theme.";
|
|
|
|
};
|
|
|
|
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
example = "Vanilla-DMZ";
|
|
|
|
description = "The cursor name within the package.";
|
|
|
|
};
|
|
|
|
|
|
|
|
size = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 32;
|
|
|
|
example = 64;
|
|
|
|
description = "The cursor size.";
|
|
|
|
};
|
2018-05-05 22:50:08 +02:00
|
|
|
|
|
|
|
defaultCursor = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "left_ptr";
|
|
|
|
example = "X_cursor";
|
|
|
|
description = "The default cursor file to use within the package.";
|
|
|
|
};
|
2018-02-02 05:37:45 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-02-02 05:37:45 +01:00
|
|
|
meta.maintainers = [ maintainers.league ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
xsession.pointerCursor = mkOption {
|
|
|
|
type = types.nullOr cursorType;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
The X cursor theme and settings. The package
|
|
|
|
<varname>xorg.xcursorthemes</varname> contains cursors named
|
|
|
|
whiteglass, redglass, and handhelds. The package
|
|
|
|
<varname>vanilla-dmz</varname> contains cursors named Vanilla-DMZ
|
|
|
|
and Vanilla-DMZ-AA. Note: handhelds does not seem to work at
|
|
|
|
custom sizes.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf (cfg != null) {
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
home.packages = [ cfg.package ];
|
2018-02-02 05:37:45 +01:00
|
|
|
|
|
|
|
xsession.initExtra = ''
|
2020-02-02 00:39:17 +01:00
|
|
|
${pkgs.xorg.xsetroot}/bin/xsetroot -xcf ${cfg.package}/share/icons/${cfg.name}/cursors/${cfg.defaultCursor} ${
|
|
|
|
toString cfg.size
|
|
|
|
}
|
2018-02-02 05:37:45 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
xresources.properties = {
|
|
|
|
"Xcursor.theme" = cfg.name;
|
2020-02-02 00:39:17 +01:00
|
|
|
"Xcursor.size" = cfg.size;
|
2018-02-02 05:37:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
gtk.gtk2.extraConfig = ''
|
|
|
|
gtk-cursor-theme-name="${cfg.name}"
|
|
|
|
gtk-cursor-theme-size=${toString cfg.size}
|
|
|
|
'';
|
|
|
|
|
|
|
|
gtk.gtk3.extraConfig = {
|
|
|
|
"gtk-cursor-theme-name" = cfg.name;
|
|
|
|
"gtk-cursor-theme-size" = cfg.size;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|