mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
c756e021a7
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. :^)
38 lines
717 B
Bash
38 lines
717 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" ]; then
|
|
prompt_color=31
|
|
else
|
|
prompt_color=32
|
|
fi
|
|
|
|
export PROMPT="\\X\\u@\\h:\\w\\a\\e[$prompt_color;1m\\h\\e[0m:\\e[34;1m\\w\\e[0m \\p "
|
|
export TMPDIR=/tmp
|
|
|
|
PROGRAMS_ALLOWED_TO_MODIFY_DEFAULT_TERMIOS="stty"
|