mirror of
https://github.com/getcompanion-ai/computer-guest.git
synced 2026-04-15 08:03:40 +00:00
feat: guestOS docker config (#3)
This commit is contained in:
commit
27f7b6318b
11 changed files with 660 additions and 0 deletions
15
defaults/.bashrc
Normal file
15
defaults/.bashrc
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
case $- in
|
||||
*i*) ;;
|
||||
*) return ;;
|
||||
esac
|
||||
|
||||
computer_prompt_name() {
|
||||
printf '%s' "${COMPUTER_NAME:-${COMPUTER_HANDLE:-microagentcomputer}}"
|
||||
}
|
||||
|
||||
alias ls='eza --group-directories-first --icons=auto'
|
||||
alias la='eza -a --group-directories-first --icons=auto'
|
||||
alias ll='eza -lah --git --group-directories-first --icons=auto'
|
||||
alias lt='eza --tree --level=2 --group-directories-first --icons=auto'
|
||||
|
||||
export PS1="\[\033[01;32m\]\$(computer_prompt_name)\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ "
|
||||
Loading…
Add table
Add a link
Reference in a new issue