Compare commits

...

2 Commits

Author SHA1 Message Date
95814eb86b add chroot prompt 2025-03-31 19:27:41 +00:00
ac84c755a9 set XDG vars to defaults if unset 2025-03-31 19:27:33 +00:00
2 changed files with 13 additions and 0 deletions

View File

@ -1,8 +1,15 @@
#!/bin/sh
# icky, but necessary since this might inject the needed XDG vars
. "$HOME/.config/environment.local" 2>/dev/null
. "$XDG_DATA_HOME/cargo/env" 2>/dev/null
# set to defaults if any of these are unset
export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
# runit
export SVDIR="$XDG_STATE_HOME"/service

View File

@ -33,6 +33,12 @@ zstyle ':vcs_info:*' formats ' %F{green}%b'
PROMPT='%F{yellow}%n@%m %F{white}%1~%(?.. %?) $ '
RPROMPT='%f$vcs_info_msg_0_ '
# Detect if we're in a schroot and modify prompt accordingly
if [[ -n "$SCHROOT_CHROOT_NAME" ]]; then
# We're in a schroot - add [chroot:name] to the prompt
PS1="[chroot:$SCHROOT_CHROOT_NAME] $PS1"
fi
alias boinctui='boinctui --boinchost=localhost'
alias bt='bluetoothctl'
alias c='clear'