Fix cursors, add more shortcuts
This commit is contained in:
parent
5301ae7af1
commit
6461c2cbc2
2
nixos/home-manager/env/bspwm.nix
vendored
2
nixos/home-manager/env/bspwm.nix
vendored
|
@ -14,7 +14,7 @@
|
||||||
pointer_action3 = "resize_corner";
|
pointer_action3 = "resize_corner";
|
||||||
};
|
};
|
||||||
startupPrograms = [
|
startupPrograms = [
|
||||||
"kitty"
|
"kitty -e \"nvim\""
|
||||||
];
|
];
|
||||||
monitors = {
|
monitors = {
|
||||||
"primary" = ["I" "II" "III" "IV" "V"];
|
"primary" = ["I" "II" "III" "IV" "V"];
|
||||||
|
|
3
nixos/home-manager/env/sxhkd.nix
vendored
3
nixos/home-manager/env/sxhkd.nix
vendored
|
@ -5,10 +5,11 @@
|
||||||
keybindings = {
|
keybindings = {
|
||||||
# Terminal emulators
|
# Terminal emulators
|
||||||
"super + Return" = "kitty";
|
"super + Return" = "kitty";
|
||||||
|
"super + n" = "kitty -e \"nvim\"";
|
||||||
"super + shift + Return" = "xfce4-terminal --drop-down";
|
"super + shift + Return" = "xfce4-terminal --drop-down";
|
||||||
|
|
||||||
# Launcher
|
# Launcher
|
||||||
"super + @space" = "rofi -show drun -theme $HOME/.dotfiles/rofi/rofidmenu.rasi";
|
"super + @space" = "rofi -show drun -theme $HOME/.dotfiles/rofi/config.rasi";
|
||||||
|
|
||||||
# bspwm hotkeys
|
# bspwm hotkeys
|
||||||
"super + Escape" = "pkill -USR1 -x sxhkd";
|
"super + Escape" = "pkill -USR1 -x sxhkd";
|
||||||
|
|
2
nixos/home-manager/env/xfce.nix
vendored
2
nixos/home-manager/env/xfce.nix
vendored
|
@ -18,7 +18,7 @@
|
||||||
xfconf.settings = {
|
xfconf.settings = {
|
||||||
xsettings = {
|
xsettings = {
|
||||||
"Net/ThemeName" = "Catppuccin-Frappe-Standard-Blue-Dark";
|
"Net/ThemeName" = "Catppuccin-Frappe-Standard-Blue-Dark";
|
||||||
"Gtk/CursorThemeName" = "Catppuccin-Macchiato-Dark";
|
"Gtk/CursorThemeName" = "Catppuccin-Macchiato-Dark-Cursors";
|
||||||
"Gtk/FontName" = "Sans 12";
|
"Gtk/FontName" = "Sans 12";
|
||||||
"Gtk/MonospaceFontName" = "FiraCode Nerd Font 12";
|
"Gtk/MonospaceFontName" = "FiraCode Nerd Font 12";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue