Use a more consistent cursor setting
This commit is contained in:
parent
4b473b6a71
commit
3e8aa1abcf
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.firefox.override {
|
package = pkgs.firefox-wayland.override {
|
||||||
cfg = {
|
cfg = {
|
||||||
# Tridactyl native connector
|
# Tridactyl native connector
|
||||||
enableTridactylNative = true;
|
enableTridactylNative = true;
|
||||||
|
|
|
@ -40,8 +40,8 @@ in
|
||||||
# Cursor
|
# Cursor
|
||||||
xsession.pointerCursor = {
|
xsession.pointerCursor = {
|
||||||
package = pkgs.numix-cursor-theme;
|
package = pkgs.numix-cursor-theme;
|
||||||
name = "Numix-Cursor-Light";
|
name = "Numix-Cursor";
|
||||||
size = 32;
|
size = 24;
|
||||||
};
|
};
|
||||||
|
|
||||||
# MIME set ups
|
# MIME set ups
|
||||||
|
|
|
@ -79,6 +79,11 @@ in
|
||||||
# Wallpaper
|
# Wallpaper
|
||||||
output."*".bg = if cfg.wallpaper == "" then "#000000 solid_color" else "${cfg.wallpaper} fill";
|
output."*".bg = if cfg.wallpaper == "" then "#000000 solid_color" else "${cfg.wallpaper} fill";
|
||||||
|
|
||||||
|
### Seats
|
||||||
|
#
|
||||||
|
# Cursor
|
||||||
|
seat."*".xcursor_theme = "${config.xsession.pointerCursor.name} ${toString config.xsession.pointerCursor.size}";
|
||||||
|
|
||||||
### Programs
|
### Programs
|
||||||
#
|
#
|
||||||
# Terminal
|
# Terminal
|
||||||
|
|
Loading…
Reference in a new issue