mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-30 03:51:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| xrandr --auto
 | |
| #adding ressources
 | |
| [ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile"
 | |
| [ -f "$HOME/.config/xorg/Xdefaults" ] && xrdb -merge "$HOME/.config/xorg/Xdefaults"
 | |
| [ -f "$HOME/.config/xorg/Xpcspec" ] && xrdb -merge "$HOME/.config/xorg/Xpcspec"
 | |
| 
 | |
| xterm -geometry 80x24+10+10 -fn 10x20
 | |
| 
 | |
| setbg
 | |
| exec dwm
 |