30 lines
		
	
	
		
			660 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			660 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/dash
 | 
						|
 | 
						|
# Autostart Apps
 | 
						|
xset +fp ~/.fonts/misc/
 | 
						|
xset b off
 | 
						|
xset r rate 250 25
 | 
						|
xbacklight -set 5
 | 
						|
/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
 | 
						|
pcmanfm -d &
 | 
						|
compton -b
 | 
						|
hsetroot -tile ~/.wallpaper.png
 | 
						|
xsettingsd &
 | 
						|
dunst -geometry "300x60-28+56" &
 | 
						|
 | 
						|
# Touchpad settings
 | 
						|
synclient \
 | 
						|
VertEdgeScroll=0 HorizEdgeScroll=0 \
 | 
						|
VertTwoFingerScroll=1 HorizTwoFingerScroll=1 \
 | 
						|
VertScrollDelta=320 HorizScrollDelta=320 \
 | 
						|
MinSpeed=0.05 MaxSpeed=1.2 \
 | 
						|
AccelFactor=0.04 CoastingSpeed=10 \
 | 
						|
TapButton1=0 TapButton2=0 TapButton3=0
 | 
						|
 | 
						|
# Panel
 | 
						|
panel &
 | 
						|
trayer \
 | 
						|
--align right --widthtype request --heighttype pixel --height 28 \
 | 
						|
--transparent true --alpha 255 &
 | 
						|
 |