From 6461c2cbc2c3b34017180d5afebdc580f9bf29df Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 5 Apr 2023 12:01:56 +0100 Subject: [PATCH] Fix cursors, add more shortcuts --- nixos/home-manager/env/bspwm.nix | 2 +- nixos/home-manager/env/sxhkd.nix | 3 ++- nixos/home-manager/env/xfce.nix | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/home-manager/env/bspwm.nix b/nixos/home-manager/env/bspwm.nix index 55305313..6c78c4e9 100644 --- a/nixos/home-manager/env/bspwm.nix +++ b/nixos/home-manager/env/bspwm.nix @@ -14,7 +14,7 @@ pointer_action3 = "resize_corner"; }; startupPrograms = [ - "kitty" + "kitty -e \"nvim\"" ]; monitors = { "primary" = ["I" "II" "III" "IV" "V"]; diff --git a/nixos/home-manager/env/sxhkd.nix b/nixos/home-manager/env/sxhkd.nix index 5ba6f68a..a9506c5e 100644 --- a/nixos/home-manager/env/sxhkd.nix +++ b/nixos/home-manager/env/sxhkd.nix @@ -5,10 +5,11 @@ keybindings = { # Terminal emulators "super + Return" = "kitty"; + "super + n" = "kitty -e \"nvim\""; "super + shift + Return" = "xfce4-terminal --drop-down"; # 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 "super + Escape" = "pkill -USR1 -x sxhkd"; diff --git a/nixos/home-manager/env/xfce.nix b/nixos/home-manager/env/xfce.nix index 221d35cb..cdf877f0 100644 --- a/nixos/home-manager/env/xfce.nix +++ b/nixos/home-manager/env/xfce.nix @@ -18,7 +18,7 @@ xfconf.settings = { xsettings = { "Net/ThemeName" = "Catppuccin-Frappe-Standard-Blue-Dark"; - "Gtk/CursorThemeName" = "Catppuccin-Macchiato-Dark"; + "Gtk/CursorThemeName" = "Catppuccin-Macchiato-Dark-Cursors"; "Gtk/FontName" = "Sans 12"; "Gtk/MonospaceFontName" = "FiraCode Nerd Font 12"; };