mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
refactor: update stylix cursor config and kitty cursor
This commit is contained in:
parent
453e984ed1
commit
9171c9c09c
3 changed files with 14 additions and 9 deletions
|
@ -29,5 +29,11 @@
|
|||
package = (pkgs.nerdfonts.override { fonts = [ "CascadiaCode" ]; });
|
||||
};
|
||||
};
|
||||
|
||||
cursor = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 26;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
wl-clipboard
|
||||
swaybg
|
||||
|
||||
bibata-cursors
|
||||
libsForQt5.qtstyleplugin-kvantum
|
||||
libsForQt5.qt5ct
|
||||
papirus-icon-theme
|
||||
|
@ -26,12 +25,12 @@
|
|||
"$Right" = "L";
|
||||
"$Up" = "K";
|
||||
"$Down" = "J";
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
||||
"HYPRCURSOR_SIZE,26"
|
||||
"XCURSOR_THEME,Bibata-Modern-Ice"
|
||||
"XCURSOR_SIZE,26"
|
||||
];
|
||||
# env = [
|
||||
# "HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
||||
# "HYPRCURSOR_SIZE,26"
|
||||
# "XCURSOR_THEME,Bibata-Modern-Ice"
|
||||
# "XCURSOR_SIZE,26"
|
||||
# ];
|
||||
bind =
|
||||
[
|
||||
# Application Keybinds
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
allow_remote_control = "socket-only";
|
||||
listen_on = "unix:/tmp/kitty";
|
||||
scrollback_pager = ''nvim --noplugin -c "set signcolumn=no showtabline=0" -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - "'';
|
||||
cursor = "#c0caf5";
|
||||
cursor_text_color = "#1a1b26";
|
||||
cursor = pkgs.lib.mkForce "#c0caf5";
|
||||
cursor_text_color = pkgs.lib.mkForce "#1a1b26";
|
||||
};
|
||||
keybindings = {
|
||||
"kitty_mod+h" = "show_scrollback";
|
||||
|
|
Loading…
Reference in a new issue