serenity/Base/etc/shellrc
Andreas Kling c756e021a7 Userland: Remove "Inspector" program and related utilities
This program has never lived up to its original idea, and has been
broken for years (property editing, etc). It's also unmaintained and
off-by-default since forever.

At this point, Inspector is more of a maintenance burden than a feature,
so this commit removes it from the system, along with the mechanism in
Core::EventLoop that enables it.

If we decide we want the feature again in the future, it can be
reimplemented better. :^)
2023-04-25 14:48:40 +02:00

44 lines
809 B
Bash

#!sh
alias fm=FileManager
alias mag=Magnifier
alias sh=Shell
alias tb=Taskbar
alias te=TextEditor
alias he=HexEditor
alias pp=PixelPaint
alias iv=ImageViewer
alias pi=Piano
alias calc=Calculator
alias calendar=Calendar
alias sp=SoundPlayer
alias help=Help
alias br=Browser
alias hs=HackStudio
alias sdb=Debugger
alias sm=SystemMonitor
alias pv=Profiler
alias ws=WebServer
alias ue=UserspaceEmulator
alias fe=FontEditor
alias ss=Spreadsheet
alias vp=VideoPlayer
alias ll='ls -l'
if [ "$(id -u)" = "0" ] {
prompt_color=31
} else {
prompt_color=32
}
export PROMPT="\\X\\u@\\h:\\w\\a\\e[$prompt_color;1m\\h\\e[0m:\\e[34;1m\\w\\e[0m \\p "
export HISTORY_AUTOSAVE_TIME_MS=10000
export TMPDIR=/tmp
PROGRAMS_ALLOWED_TO_MODIFY_DEFAULT_TERMIOS=(stty)
for /usr/share/shell/completion/*.sh { source $it }