Compare commits
2 Commits
1b3cb98eee
...
95814eb86b
Author | SHA1 | Date | |
---|---|---|---|
95814eb86b | |||
ac84c755a9 |
@ -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
|
||||
|
||||
|
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user