#!/bin/bash ## ## ~/.xinitrc ## ## Executed by startx (run your window manager from here) ## # # activate num lock numlockx & # set left-pointer xsetroot -cursor_name left_ptr & # set font path xset +fp /usr/share/fonts/local/ & # start unclutter unclutter -idle 5 -noevents -root & # start xbindkeys xbindkeys & # load xresources xrdb -merge ~/.Xresources # set wallpaper (start feh) sh ~/.fehbg & # start terminal urxvt_launch.sh & # set window manager name (for java) wmname LG3D & # run conky conky | while read -r; do xsetroot -name "$REPLY"; done & # run autocutsel (synchronize clipboard buffers) autocutsel -fork & autocutsel -selection PRIMARY -fork & # launch dwm exec ~/bin/dwm-start.sh