dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

autostart (1065B)


      1 screen.sh &
      2 
      3 ## GNOME PolicyKit and Keyring
      4 eval $(gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg) &
      5 
      6 ## Set root window colour
      7 hsetroot -solid "#2E3436" &
      8 
      9 nitrogen --restore &
     10 
     11 cb-compositor --start &
     12 
     13 tint2 &
     14 
     15 ## Volume control for systray
     16 (sleep 2s && pnmixer) &
     17 
     18 ## Gnome Pie
     19 gnome-pie &
     20 
     21 ## Volume keys daemon
     22 xfce4-volumed &
     23 
     24 ## Enable power management
     25 xfce4-power-manager &
     26 
     27 ## Start Thunar Daemon
     28 thunar --daemon &
     29 
     30 ## Detect and configure touchpad. See 'man synclient' for more info.
     31 if egrep -iq 'touchpad' /proc/bus/input/devices; then
     32     synclient VertEdgeScroll=1 &
     33     synclient TapButton1=1 &
     34 fi
     35 
     36 ## Start xscreensaver
     37 xscreensaver -no-splash &
     38 
     39 ## Start Clipboard manager
     40 (sleep 3s && clipit) &
     41 
     42 ## Set keyboard settings - 250 ms delay and 25 cps (characters per second) repeat rate.
     43 ## Adjust the values according to your preferances.
     44 xset r rate 250 25
     45 xset mouse 20 30
     46 
     47 ## Turn on/off system beep
     48 xset b off &
     49 
     50 ## cb-fortune - have Waldorf say a little adage
     51 (sleep 120s && cb-fortune) &
     52 
     53 ## Run the conky
     54 conky -q &
     55 
     56 nm-applet &
     57