meow
This commit is contained in:
parent
44d708329a
commit
7dd32c7a17
9 changed files with 168 additions and 56 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue