49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| userresources=$HOME/.Xresources
 | |
| usermodmap=$HOME/.Xmodmap
 | |
| sysresources=/etc/X11/xinit/.Xresources
 | |
| sysmodmap=/etc/X11/xinit/.Xmodmap
 | |
| 
 | |
| # merge in defaults and keymaps
 | |
| 
 | |
| if [ -f $sysresources ]; then
 | |
|     xrdb -merge $sysresources
 | |
| fi
 | |
| 
 | |
| if [ -f $sysmodmap ]; then
 | |
|     xmodmap $sysmodmap
 | |
| fi
 | |
| 
 | |
| if [ -f "$userresources" ]; then
 | |
|     xrdb -merge "$userresources"
 | |
| fi
 | |
| 
 | |
| if [ -f "$usermodmap" ]; then
 | |
|     xmodmap "$usermodmap"
 | |
| fi
 | |
| 
 | |
| # start some nice programs
 | |
| 
 | |
| if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 | |
|  for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
 | |
|   [ -x "$f" ] && . "$f"
 | |
|  done
 | |
|  unset f
 | |
| fi
 | |
| 
 | |
| xrandr --output DVI-D-0 --off --output HDMI-0 --off --output DP-5 --off --output DP-4 --primary --mode 2560x1440 --pos 1080x0 --rotate normal --output DP-3 --off --output DP-2 --mode 1920x1080 --pos 3640x0 --rotate normal --output DP-1 --off --output DP-0 --mode 1920x1080 --pos 0x0 --rotate right
 | |
| #twm &
 | |
| #xclock -geometry 50x50-1+1 &
 | |
| #xterm -geometry 80x50+494+51 &
 | |
| #xterm -geometry 80x20+494-0 &
 | |
| #exec xterm -geometry 80x66+0+0 -name login
 | |
| #exec gnome-session
 | |
| exec i3
 | |
| #exec startkde
 | |
| #exec startxfce4
 | |
| eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
 | |
| dbus-update-activation-environment --systemd DISPLAY
 | |
| export SSH_AUTH_SOCK
 | |
| xautolock -time 45 -locker "systemctl suspend"
 |