2014-03-22 00:48:35 +08:00
|
|
|
# name: Debian chroot
|
|
|
|
# author: Maurizio De Santis
|
|
|
|
|
|
|
|
function fish_prompt --description 'Write out the prompt, prepending the Debian chroot environment if present'
|
2016-11-02 10:19:45 +08:00
|
|
|
# Set variable identifying the chroot you work in (used in the prompt below)
|
2020-05-15 13:56:06 +08:00
|
|
|
set -l debian_chroot $debian_chroot
|
2020-06-17 23:55:23 +08:00
|
|
|
|
2020-05-15 13:56:06 +08:00
|
|
|
if not set -q debian_chroot[1]
|
2018-11-11 21:11:03 +08:00
|
|
|
and test -r /etc/debian_chroot
|
2016-11-02 10:19:45 +08:00
|
|
|
set debian_chroot (cat /etc/debian_chroot)
|
|
|
|
end
|
2020-06-17 23:55:23 +08:00
|
|
|
|
2018-11-11 21:11:03 +08:00
|
|
|
if not set -q __fish_debian_chroot_prompt
|
2020-05-15 13:56:06 +08:00
|
|
|
and set -q debian_chroot[1]
|
2018-11-11 21:11:03 +08:00
|
|
|
and test -n "$debian_chroot"
|
2016-11-02 10:19:45 +08:00
|
|
|
set -g __fish_debian_chroot_prompt "($debian_chroot)"
|
|
|
|
end
|
2014-03-22 00:48:35 +08:00
|
|
|
|
2016-11-02 10:19:45 +08:00
|
|
|
# Prepend the chroot environment if present
|
|
|
|
if set -q __fish_debian_chroot_prompt
|
2019-04-09 18:37:10 +08:00
|
|
|
echo -n -s (set_color yellow) "$__fish_debian_chroot_prompt" (set_color normal) ' '
|
2016-11-02 10:19:45 +08:00
|
|
|
end
|
2014-03-22 00:48:35 +08:00
|
|
|
|
2020-09-05 15:02:32 +08:00
|
|
|
if functions -q fish_is_root_user; and fish_is_root_user
|
2020-06-17 23:55:23 +08:00
|
|
|
echo -n -s "$USER" @ (prompt_hostname) ' ' (set -q fish_color_cwd_root
|
|
|
|
and set_color $fish_color_cwd_root
|
|
|
|
or set_color $fish_color_cwd) (prompt_pwd) \
|
|
|
|
(set_color normal) '# '
|
2014-03-22 00:48:35 +08:00
|
|
|
|
2020-06-17 23:55:23 +08:00
|
|
|
else
|
|
|
|
echo -n -s "$USER" @ (prompt_hostname) ' ' (set_color $fish_color_cwd) (prompt_pwd) \
|
|
|
|
(set_color normal) '> '
|
2014-03-22 00:48:35 +08:00
|
|
|
|
2016-11-02 10:19:45 +08:00
|
|
|
end
|
2014-03-22 00:48:35 +08:00
|
|
|
end
|