this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

pointerCursor + lightdm bullshit

+18 -10
+14 -10
profiles/desktop/default.nix
··· 182 182 183 183 disconnect_keyboard 184 184 ''; 185 - # lightdm.enable = true; 186 - # lightdm.greeters.mini.enable = true; 187 - # lightdm.greeters.mini.user = "anish"; # TODO hardcoded 188 - # lightdm.background = "/etc/nixos/users/profiles/desktop/background.jpg"; 189 - # lightdm.greeters.mini.extraConfig = '' 190 - # text-color = "#ff79c6" 191 - # password-background-color = "#1E2029" 192 - # window-color = "#181a23" 193 - # border-color = "#181a23" 194 - # ''; 185 + lightdm = { 186 + enable = true; 187 + background = "/etc/nixos/users/profiles/desktop/background.jpg"; 188 + greeters.mini = { 189 + enable = true; 190 + user = "anish"; 191 + extraConfig = '' 192 + text-color = "#ff79c6" 193 + password-background-color = "#1E2029" 194 + window-color = "#181a23" 195 + border-color = "#181a23" 196 + ''; 197 + }; 198 + }; 195 199 }; 196 200 windowManager.bspwm.enable = true; 197 201 #windowManager.bspwm.configFile = "/home/anish/.bspwm/bspwmrc";
+1
users/profiles/desktop/default.nix
··· 10 10 { 11 11 home.pointerCursor = { 12 12 x11.enable = true; 13 + x11.defaultCursor = "left_ptr"; 13 14 package = pkgs.capitaine-cursors; 14 15 name = "capitaine-cursors"; 15 16 };
+3
users/profiles/desktop/run.sh
··· 1 1 #!/usr/bin/env bash 2 2 3 + # Cheap hack to get pointerCursor working because for some reason it doesn't... 4 + xsetroot -xcf /etc/profiles/per-user/anish/share/icons/capitaine-cursors/cursors/left_ptr 32 5 + 3 6 pkill -u $UID -x polybar 4 7 while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done 5 8