mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-29 19:41:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			223 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			223 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| [ -f "$HOME/.xprofile" ] && . "$HOME/.xprofile"
 | |
| [ -f "$HOME/.Xdefaults" ] && xrdb -merge "$HOME/.Xdefaults"
 | |
| [ -f "$HOME/.Xpcspec" ] && xrdb -merge "$HOME/.Xpcspec"
 | |
| 
 | |
| xterm -geometry 80x24+10+10 -fn 10x20
 | |
| 
 | |
| exec i3
 |