This commit is contained in:
Lucy von Overheidt 2025-09-09 23:43:59 +02:00
parent 44d708329a
commit 7dd32c7a17
9 changed files with 168 additions and 56 deletions

View file

@ -1,8 +1,9 @@
{ config
, lib
, pkgs
, inputs
, ...
{
config,
lib,
pkgs,
inputs,
...
}:
let
makeCommand = command: {
@ -11,10 +12,20 @@ let
qs = "${pkgs.quickshell}/bin/qs";
wl-paste = "${pkgs.wl-clipboard}/bin/wl-paste";
wallpapers = inputs.self.packages.${pkgs.system}.wallpapers;
helloKittyCursor = pkgs.fetchzip {
url = "https://www.rw-designer.com/cursor-downloadset/hello-kitty.zip";
hash = "";
};
in
{
programs.niri.settings = {
cursor = {
theme = "Hello-Kitty"; # Set the cursor theme
size = 48; # Set the cursor size in logical pixels
hide-after-inactive-ms = 1000; # Hide cursor after 1 second of inactivity
hide-when-typing = true; # Hide cursor when typing
};
environment = {
CLUTTER_BACKEND = "wayland";
DISPLAY = ":0";