diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-06 16:30:38 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-06 16:30:38 -0500 |
commit | 7a996659155601253fe4a5c8999f2125c8bfab0c (patch) | |
tree | 9a1f8864bb23f456bc059291368cf1347bc05d43 /home/config | |
parent | remove legacy fixes (diff) | |
download | dotfiles-guix-7a996659155601253fe4a5c8999f2125c8bfab0c.tar.gz dotfiles-guix-7a996659155601253fe4a5c8999f2125c8bfab0c.tar.bz2 dotfiles-guix-7a996659155601253fe4a5c8999f2125c8bfab0c.zip |
fix ssh TERM, fix hyprlock exit
Diffstat (limited to 'home/config')
-rw-r--r-- | home/config/hypr/config.d/keybinds.conf | 2 | ||||
-rw-r--r-- | home/config/zsh/zshrc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/home/config/hypr/config.d/keybinds.conf b/home/config/hypr/config.d/keybinds.conf index 4836e1d..d5873c5 100644 --- a/home/config/hypr/config.d/keybinds.conf +++ b/home/config/hypr/config.d/keybinds.conf @@ -7,7 +7,7 @@ bind = $mod, J, togglesplit bind = $mod, F, fullscreen bind = $mod, L, exec, hyprlock -bind = $mod SHIFT, L, exec, killall dbus-run-session +bind = $mod SHIFT, L, exit bind = $mod SHIFT, Q, killactive bind = $mod, F5, exec, sh -c 'killall waybar; waybar --config ~/.config/waybar/config.hypr' diff --git a/home/config/zsh/zshrc b/home/config/zsh/zshrc index 3b66ab2..b7b4423 100644 --- a/home/config/zsh/zshrc +++ b/home/config/zsh/zshrc @@ -44,6 +44,7 @@ alias grep="grep --color=auto" alias diff="diff --color=auto" alias ccat="highlight --out-format=ansi" alias vim="nvim" +alias ssh='TERM=xterm-256color ssh' # xterm-kitty bad # manpages export LESS_TERMCAP_md=$'\e[1;36m' |