From f4c18337327229371156b457f01fa666a056d84c Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 15 Nov 2024 11:10:56 +0100 Subject: Add toggle-screenkey script --- config/fish/config.fish | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config/fish') diff --git a/config/fish/config.fish b/config/fish/config.fish index b4c72d9..c1f961d 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -45,6 +45,8 @@ set -gx PYTHONSTARTUP "$XDG_CONFIG_HOME/python/startup.py" set -gx ASPELL_CONF "per-conf $XDG_CONFIG_HOME/aspell/aspell.conf; personal $XDG_CONFIG_HOME/aspell/en.pws; repl $XDG_CONFIG_HOME/aspell/en.prepl" set -gx BUNDLE_USER_CONFIG "$XDG_CONFIG_HOME"/bundle set -gx NPM_CONFIG_USERCONFIG "$XDG_CONFIG_HOME/npm/npmrc" +# set -gx AWS_SHARED_CREDENTIALS_FILE="$XDG_CONFIG_HOME/aws/credentials" +# set -gx AWS_CONFIG_FILE="$XDG_CONFIG_HOME/aws/config" # shellcheck disable SC2016 set -gx VIMINIT 'let $MYVIMRC="$XDG_CONFIG_HOME/vim/vimrc" | source $MYVIMRC' set -gx IPYTHONDIR "$XDG_CONFIG_HOME/ipython" @@ -73,6 +75,7 @@ set -gx XAUTHORITY "$XDG_RUNTIME_DIR/Xauthority" set -gx GHCUP_USE_XDG_DIRS 'true' set -gx STACK_XDG '1' + # shellcheck disable SC2155 # color in man (less pager) set -gx LESS_TERMCAP_mb "$(printf '%b' '\e[1;32m')" -- cgit From d73f7e2c84bd6dcb107691055acc5bf68b5b733f Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 15 Nov 2024 13:18:48 +0100 Subject: Add cowsay-total-war-quotes script --- config/fish/config.fish | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config/fish') diff --git a/config/fish/config.fish b/config/fish/config.fish index c1f961d..fbe5f7a 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -239,6 +239,8 @@ if status is-interactive if set -q VIRTUAL_ENV echo -n -s (set_color -b blue white) "(" (basename "$VIRTUAL_ENV") ")" (set_color normal) " " end + + command -q cowsay-total-war-quotes && cowsay-total-war-quotes end if status is-login -- cgit