Update autostart programs.
This commit is contained in:
9
autostart/autostart/20_screen.sh
Executable file
9
autostart/autostart/20_screen.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
printf '%s\n' "execute xautorandr" >>"$LOGFILE"
|
||||||
|
|
||||||
|
xautorandr
|
||||||
|
|
||||||
|
printf '%s\n' "disable screen blanking" >>"$LOGFILE"
|
||||||
|
xset -dpms & &>> $LOGFILE
|
||||||
|
xset s off & &>> $LOGFILE
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
log "parsing .Xresources"
|
printf '%s' "parsing .Xresources" >>"$LOGFILE"
|
||||||
xrdb -merge ~/.Xresources &>> $LOGFILE
|
xrdb -merge ~/.Xresources &>> $LOGFILE
|
||||||
@@ -5,8 +5,8 @@ keyboard_variant=nodeadkeys
|
|||||||
keyboard_repeat_delay=150
|
keyboard_repeat_delay=150
|
||||||
keyboard_repeat_speed=50
|
keyboard_repeat_speed=50
|
||||||
|
|
||||||
log "setting keyboard layout"
|
printf '%s' "setting keyboard layout" >>"$LOGFILE"
|
||||||
setxkbmap -layout "$keyboard_layout" -variant "$keyboard_variant" & &>> $LOGFILE
|
setxkbmap -layout "$keyboard_layout" -variant "$keyboard_variant" & &>> $LOGFILE
|
||||||
|
|
||||||
log "setting key repeat delay"
|
printf '%s' "setting key repeat delay" >>"$LOGFILE"
|
||||||
xset r rate "$keyboard_repeat_delay" "$keyboard_repeat_speed" & &>> $LOGFILE
|
xset r rate "$keyboard_repeat_delay" "$keyboard_repeat_speed" & &>> $LOGFILE
|
||||||
@@ -1,9 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
log "configuring synclient"
|
printf '%s' "configuring synclient" >>"$LOGFILE"
|
||||||
synclient VertEdgeScroll=0
|
synclient VertEdgeScroll=0
|
||||||
synclient VertTwoFingerScroll=1
|
synclient VertTwoFingerScroll=1
|
||||||
synclient MaxSpeed=2.2
|
synclient MaxSpeed=2.2
|
||||||
synclient AccelFactor=0.08
|
synclient AccelFactor=0.08
|
||||||
synclient TapButton1=1
|
synclient TapButton1=1
|
||||||
synclient CoastingSpeed=0
|
synclient CoastingSpeed=0
|
||||||
|
synclient PalmDetect=1
|
||||||
|
synclient PalmMinWidth=20
|
||||||
|
synclient PalmMinZ=180
|
||||||
@@ -5,7 +5,7 @@ wallchanger_pidfile="$RUNDIR/wallchanger.${XDG_SESSION_ID}.pid"
|
|||||||
wallpaper_logfile="$LOGDIR/wallpaper.log"
|
wallpaper_logfile="$LOGDIR/wallpaper.log"
|
||||||
wallpaper_interval="10800"
|
wallpaper_interval="10800"
|
||||||
|
|
||||||
log "starting $path_wallchanger"
|
printf '%s' "starting $path_wallchanger" >>"$LOGFILE"
|
||||||
{
|
{
|
||||||
wallchanger "$wallpaper_directory" "$wallpaper_interval" &
|
wallchanger "$wallpaper_directory" "$wallpaper_interval" &
|
||||||
echo $! > "$wallchanger_pidfile"
|
echo $! > "$wallchanger_pidfile"
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
thunderbird &
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
chromium --app=https://subsonic.app.lab.haktec.de/index.view &
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
log "starting network tray application"
|
printf '%s' "starting network tray application" >>"$LOGFILE"
|
||||||
nm-applet & &>> $LOGFILE
|
nm-applet & &>> $LOGFILE
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
log "starting owncloud client"
|
|
||||||
owncloud & &>> $LOGFILE
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
log "starting pasystray"
|
printf '%s' "starting pasystray" >>"$LOGFILE"
|
||||||
pasystray & &>> $LOGFILE
|
pasystray & &>> $LOGFILE
|
||||||
|
|||||||
@@ -4,6 +4,6 @@
|
|||||||
redshift_lat_long="49.5:11"
|
redshift_lat_long="49.5:11"
|
||||||
redshift_colortemp="6000:3300"
|
redshift_colortemp="6000:3300"
|
||||||
|
|
||||||
log "starting redshift-gtk"
|
printf '%s' "starting redshift-gtk" >>"$LOGFILE"
|
||||||
redshift-gtk -b 1 -l "$redshift_lat_long" -t "$redshift_colortemp" & &>> "$LOGFILE"
|
redshift-gtk -b 1 -l "$redshift_lat_long" -t "$redshift_colortemp" & &>> "$LOGFILE"
|
||||||
printf '%s' $! > "$RUNDIR"/redshift.${XDG_SESSION_ID}.pid
|
printf '%s' $! > "$RUNDIR"/redshift.${XDG_SESSION_ID}.pid
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
log "execute xautorandr"
|
|
||||||
|
|
||||||
xautorandr
|
|
||||||
|
|
||||||
log "disable screen blanking"
|
|
||||||
xset -dpms & &>> $LOGFILE
|
|
||||||
xset s off & &>> $LOGFILE
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
mumble &
|
|
||||||
teamspeak3 &
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
log "starting xbindkeys"
|
|
||||||
xbindkeys
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
quasselclient &
|
chromium-browser &
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
qutebrowser &
|
evolution &
|
||||||
Reference in New Issue
Block a user