1
0
Fork 0

Change cursors and font

This commit is contained in:
Avery 2024-09-08 20:21:49 +02:00
parent bce65f6835
commit 6f2c204e91
Signed by: Avery
GPG key ID: B684FD451B692E04
4 changed files with 14 additions and 9 deletions

View file

@ -1,8 +1,8 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaMauve; package = pkgs.phinger-cursors;
name = "catppuccin-mocha-mauve-cursors"; name = "phinger-cursors-dark";
size = 32; size = 32;
}; };
} }

View file

@ -2,7 +2,7 @@
programs.kitty = { programs.kitty = {
enable = true; enable = true;
font = { font = {
name = "Iosevka Nerd Font"; name = "UbuntuMono Nerd Font";
size = 14; size = 14;
}; };
keybindings = { keybindings = {

View file

@ -32,6 +32,8 @@ in {
in { in {
"Ctrl+Alt+T" = "exec ${cfg.terminal}"; "Ctrl+Alt+T" = "exec ${cfg.terminal}";
"${Super}+Space" = "exec ags -t launcher"; "${Super}+Space" = "exec ags -t launcher";
"${Super}+C" = "exec ags -t bar_extended";
"${Hyper}+C" = "exec ags -t popup_clock";
# Workspace management # Workspace management
"${Super}+1" = "workspace number 1"; "${Super}+1" = "workspace number 1";
"${Super}+2" = "workspace number 2"; "${Super}+2" = "workspace number 2";
@ -102,7 +104,7 @@ in {
}; };
}; };
output.DP-1.resolution = "2560x1440@165Hz"; output.DP-1.resolution = "2560x1440@165Hz";
seat."*".xcursor_theme = "catppuccin-mocha-mauve-cursors 32"; seat."*".xcursor_theme = "phinger-cursors-dark 32";
startup = [ startup = [
{ command = "swww-daemon"; } { command = "swww-daemon"; }
{ command = "autotiling"; } { command = "autotiling"; }
@ -119,7 +121,9 @@ in {
default_dim_inactive 0.4 default_dim_inactive 0.4
default_border none default_border none
layer_effects bar blur enable; blur_ignore_transparent enable layer_effects bar blur enable; blur_ignore_transparent enable
layer_effects launcher blur enable; corner_radius 8 layer_effects bar_extended blur enable; blur_ignore_transparent enable
layer_effects bar_extended blur enable; blur_ignore_transparent enable
layer_effects launcher blur enable; blur_ignore_transparent enable
''; '';
}; };
} }

View file

@ -48,14 +48,15 @@
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
inter inter
(nerdfonts.override { fonts = [ "Iosevka" ]; }) ubuntu-sans
(nerdfonts.override { fonts = [ "Iosevka" "UbuntuMono" ]; })
]; ];
fontconfig = { fontconfig = {
defaultFonts = { defaultFonts = {
serif = [ "Inter" ]; serif = [ "Ubuntu Sans" ];
sansSerif = [ "Inter" ]; sansSerif = [ "Ubuntu Sans" ];
monospace = [ "Iosevka Nerd Font" ]; monospace = [ "Ubuntu Mono Nerd Font" ];
}; };
}; };
}; };