stockholm/tv/2configs/bash/default.nix

68 lines
1.8 KiB
Nix
Raw Normal View History

2022-12-09 00:31:56 +00:00
with import ./lib;
{ config, pkgs, ... }: {
2016-07-23 11:11:33 +00:00
programs.bash = {
2017-07-13 23:45:10 +00:00
interactiveShellInit = /* sh */ ''
2016-07-23 11:11:33 +00:00
HISTCONTROL='erasedups:ignorespace'
2022-04-01 20:46:35 +00:00
HISTSIZE=900001
2016-07-23 11:11:33 +00:00
HISTFILESIZE=$HISTSIZE
2019-02-05 10:06:17 +00:00
HISTTIMEFORMAT=
2016-07-23 11:11:33 +00:00
shopt -s checkhash
shopt -s histappend histreedit histverify
shopt -s no_empty_cmd_completion
complete -d cd
case $UID in
${shell.escape (toString config.krebs.users.tv.uid)})
if test ''${SHLVL-1} = 1 && test -n "''${DISPLAY-}"; then
_CURRENT_DESKTOP_NAME=''${_CURRENT_DESKTOP_NAME-$(
${pkgs.xorg.xprop}/bin/xprop -notype -root \
32i _NET_CURRENT_DESKTOP \
8s _NET_DESKTOP_NAMES \
|
${pkgs.gnused}/bin/sed -r 's/.* = //;s/"//g;s/, /\a/g' |
{
read -r _NET_CURRENT_DESKTOP
IFS=$'\a' read -ra _NET_DESKTOP_NAMES
echo "''${_NET_DESKTOP_NAMES[$_NET_CURRENT_DESKTOP]}"
}
)}
case $_CURRENT_DESKTOP_NAME in
stockholm)
cd ~/stockholm
;;
esac
fi
2018-11-30 13:07:58 +00:00
export NIX_PATH="stockholm=$HOME/stockholm:$NIX_PATH"
;;
esac
2019-02-05 10:00:57 +00:00
${pkgs.bash-fzf-history.bind}
if test -n "''${BASH_EXTRA_INIT-}"; then
. "$BASH_EXTRA_INIT"
fi
2016-07-23 11:11:33 +00:00
'';
2017-07-13 23:45:10 +00:00
promptInit = /* sh */ ''
2016-07-23 11:11:33 +00:00
case $UID in
0)
PS1='\[\e[1;31m\]\w\[\e[0m\] '
;;
${toString config.krebs.build.user.uid})
PS1='\[\e[1;32m\]\w\[\e[0m\] '
;;
*)
PS1='\[\e[1;35m\]\u \[\e[1;32m\]\w\[\e[0m\] '
;;
esac
if test -n "$SSH_CLIENT"; then
PS1='\[\e[35m\]\h'" $PS1"
fi
if test -n "$SSH_AGENT_PID"; then
PS1="ssh-agent[$SSH_AGENT_PID] $PS1"
fi
'';
};
}