add cursors
This commit is contained in:
parent
fc51202293
commit
e0dd3a991f
5 changed files with 57 additions and 2 deletions
|
|
@ -46,6 +46,10 @@ in {
|
|||
pskRaw = "ext:psk_sticky";
|
||||
};
|
||||
|
||||
"Woestgaafsecure" = {
|
||||
pskRaw = "ext:psk_sticky";
|
||||
};
|
||||
|
||||
"Utrecht University" = {
|
||||
authProtocols = ["WPA-EAP"];
|
||||
auth = ''
|
||||
|
|
|
|||
|
|
@ -8,6 +8,9 @@
|
|||
|
||||
cfg = config.horseman.wm.hyprland;
|
||||
colors = config.horseman.catppuccin.colors;
|
||||
flavor = config.horseman.catppuccin.flavor;
|
||||
|
||||
cursorSize = 24;
|
||||
in {
|
||||
imports = [
|
||||
./options.nix
|
||||
|
|
@ -40,9 +43,11 @@ in {
|
|||
wl-clipboard # Clipboard
|
||||
fuzzel # Launcher
|
||||
xdg-desktop-portal-hyprland # XDG Portal (needed but idk why)
|
||||
catppuccin-cursors."${flavor}Dark" # Cursors
|
||||
];
|
||||
|
||||
horseman.hardware.keyd.enable = true;
|
||||
horseman.dots.gtk.enable = true;
|
||||
|
||||
nix-hyprland = {
|
||||
enable = true;
|
||||
|
|
@ -53,16 +58,17 @@ in {
|
|||
"hyprpaper"
|
||||
"systemctl --user start hyprpolkitagent"
|
||||
"waybar"
|
||||
"hyprctl setcursor catppuccin-${flavor}-dark-cursors 24"
|
||||
];
|
||||
|
||||
env = [
|
||||
{
|
||||
name = "XCURSOR_SIZE";
|
||||
value = "24";
|
||||
value = toString cursorSize;
|
||||
}
|
||||
{
|
||||
name = "HYPRCURSOR_SIZE";
|
||||
value = "24";
|
||||
value = toString cursorSize;
|
||||
}
|
||||
];
|
||||
|
||||
|
|
@ -141,6 +147,8 @@ in {
|
|||
sensitivity = 0.0;
|
||||
touchpad.naturalScroll = true;
|
||||
numlockByDefault = true;
|
||||
|
||||
touchpad.disableWhileTyping = true;
|
||||
};
|
||||
|
||||
group = {
|
||||
|
|
|
|||
|
|
@ -441,6 +441,13 @@ in {
|
|||
params = "";
|
||||
}
|
||||
|
||||
{
|
||||
flags = [];
|
||||
mods = [];
|
||||
key = "XF86AudioMute";
|
||||
dispatcher = "exec";
|
||||
params = "wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 0%";
|
||||
}
|
||||
{
|
||||
flags = ["e" "l"];
|
||||
mods = [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue