From f784ea44322d7a96c0d130360e706f6fb04f2c0d Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 6 Sep 2025 20:11:18 +0200 Subject: [PATCH 1/2] Set psql_history for xdg paths --- home/.config/shell/environment | 1 + 1 file changed, 1 insertion(+) diff --git a/home/.config/shell/environment b/home/.config/shell/environment index 61680c0..3feb330 100755 --- a/home/.config/shell/environment +++ b/home/.config/shell/environment @@ -98,6 +98,7 @@ export DOTNET_CLI_HOME="$XDG_DATA_HOME/dotnet" export JUPYTER_CONFIG_DIR="$XDG_CONFIG_HOME/jupyter" export RYE_HOME="$XDG_CONFIG_HOME/rye" export OMNISHARPHOME="$XDG_CONFIG_HOME"/omnisharp +export PSQL_HISTORY="$XDG_STATE_HOME/psql_history" # Theming export GTK_THEME="Tokyonight-Dark" From 6c9978b315c13daa31cdece3251a61c1e5fb9c71 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 7 Sep 2025 15:35:13 +0200 Subject: [PATCH 2/2] Fix kitty aliases & add ssh alias --- home/.config/shell/aliases | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/.config/shell/aliases b/home/.config/shell/aliases index b9c51d2..1277a28 100755 --- a/home/.config/shell/aliases +++ b/home/.config/shell/aliases @@ -232,11 +232,12 @@ alias sudovim='sudoedit' alias cls='clear' # Kitty terminal kitten shorthands -if [ "$TERM" = "xterm=kitty" ]; then +if [ "$TERM" = "xterm-kitty" ]; then alias hls='\ls --hyperlink=auto' alias hg='kitty +kitten hyperlinked_grep' alias transfer='kitty +kitten transfer' alias icat='kitty +kitten icat' + alias ssh="kitty +kitten ssh" fi # If user is not root, pass all commands via sudo/doas