#!/bin/sh # # ~/.xsession # # Executed by xdm/gdm/kdm at login # # disable screensaver, beep and power saving xset -dpms & xset s off & xset -b & # start the network manager, useful for vpns nm-applet & # removable media udiskie --automount --file-manager thunar --tray --notify & # set the wallpaper and other visuals ~/.fehbg & compton -b & xsettingsd & clight # utilities dropbox & copyq & conky --daemonize -c ~/.config/conky/conky.conf & conky --daemonize -c ~/.config/conky/task.conf & # keyboard with alt+shift us,tr switch, map escape to capslock setxkbmap -model pc105 -layout us,tr -option grp:alt_shift_toggle,caps:swapescape & xinput set-prop "ELAN1200:00 04F3:3045 Touchpad" "libinput Natural Scrolling Enabled" 1 & xinput set-prop "ELAN1200:00 04F3:3045 Touchpad" "libinput Tapping Enabled" 1 &