mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:02:44 +00:00 
			
		
		
		
	 c756e021a7
			
		
	
	
		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. :^)
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			809 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			43 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 }
 |