Change cursors and font
This commit is contained in:
parent
bce65f6835
commit
6f2c204e91
4 changed files with 14 additions and 9 deletions
|
@ -1,8 +1,8 @@
|
|||
{ pkgs, ... }: {
|
||||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
package = pkgs.catppuccin-cursors.mochaMauve;
|
||||
name = "catppuccin-mocha-mauve-cursors";
|
||||
package = pkgs.phinger-cursors;
|
||||
name = "phinger-cursors-dark";
|
||||
size = 32;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "Iosevka Nerd Font";
|
||||
name = "UbuntuMono Nerd Font";
|
||||
size = 14;
|
||||
};
|
||||
keybindings = {
|
||||
|
|
|
@ -32,6 +32,8 @@ in {
|
|||
in {
|
||||
"Ctrl+Alt+T" = "exec ${cfg.terminal}";
|
||||
"${Super}+Space" = "exec ags -t launcher";
|
||||
"${Super}+C" = "exec ags -t bar_extended";
|
||||
"${Hyper}+C" = "exec ags -t popup_clock";
|
||||
# Workspace management
|
||||
"${Super}+1" = "workspace number 1";
|
||||
"${Super}+2" = "workspace number 2";
|
||||
|
@ -102,7 +104,7 @@ in {
|
|||
};
|
||||
};
|
||||
output.DP-1.resolution = "2560x1440@165Hz";
|
||||
seat."*".xcursor_theme = "catppuccin-mocha-mauve-cursors 32";
|
||||
seat."*".xcursor_theme = "phinger-cursors-dark 32";
|
||||
startup = [
|
||||
{ command = "swww-daemon"; }
|
||||
{ command = "autotiling"; }
|
||||
|
@ -119,7 +121,9 @@ in {
|
|||
default_dim_inactive 0.4
|
||||
default_border none
|
||||
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
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -48,14 +48,15 @@
|
|||
fonts = {
|
||||
packages = with pkgs; [
|
||||
inter
|
||||
(nerdfonts.override { fonts = [ "Iosevka" ]; })
|
||||
ubuntu-sans
|
||||
(nerdfonts.override { fonts = [ "Iosevka" "UbuntuMono" ]; })
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "Inter" ];
|
||||
sansSerif = [ "Inter" ];
|
||||
monospace = [ "Iosevka Nerd Font" ];
|
||||
serif = [ "Ubuntu Sans" ];
|
||||
sansSerif = [ "Ubuntu Sans" ];
|
||||
monospace = [ "Ubuntu Mono Nerd Font" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue