Table of Contents

Dotfiles of "ripley"

Xorg

/etc/X11/xorg.conf

Section "Files"
    FontPath    "/usr/share/fonts/X11/misc"
    FontPath    "/usr/X11R6/lib/X11/fonts/misc"
    FontPath    "/usr/share/fonts/X11/cyrillic"
    FontPath    "/usr/X11R6/lib/X11/fonts/cyrillic"
    FontPath    "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath    "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath    "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath    "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath    "/usr/share/fonts/X11/Type1"
    FontPath    "/usr/X11R6/lib/X11/fonts/Type1"
    FontPath    "/usr/share/fonts/X11/100dpi"
    FontPath    "/usr/X11R6/lib/X11/fonts/100dpi"
    FontPath    "/usr/share/fonts/X11/75dpi"
    FontPath    "/usr/X11R6/lib/X11/fonts/75dpi"
    FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection
 
Section "Module"
    Load    "i2c"
    Load    "bitmap"
    Load    "ddc"
    Load    "dri"
    Load    "extmod"
    Load    "freetype"
    Load    "glx"
    Load    "int10"
    Load    "vbe"
EndSection
 
Section "InputDevice"
    Identifier    "Cherry G83"
    Driver        "kbd"
    Option        "CoreKeyboard"
    Option        "XkbRules"    "xorg"
    Option        "XkbModel"    "pc105"
    Option        "XkbLayout"    "de"
    Option        "XkbVariant"    "nodeadkeys"
EndSection
 
Section "InputDevice"
    Identifier    "Logitech MX518"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device"        "/dev/input/mice"
    Option        "Protocol"        "ExplorerPS/2"
    Option        "Emulate3Buttons"    "true"
    Option        "Buttons"        "7"
    Option        "ZAxisMapping"        "6 7"
EndSection
 
Section "Device"
    Identifier    "EVGA GeForce 8800 GTS 640MB"
    Driver        "nvidia"
    BusID         "PCI:3:0:0"
EndSection
 
Section "Monitor"
    Identifier    "Samsung SyncMaster 172T"
    Option        "DPMS"
    HorizSync     28-64
    VertRefresh   43-60
EndSection
 
Section "Screen"
    Identifier       "Default Screen"
    Device           "EVGA GeForce 8800 GTS 640MB"
    Monitor          "Samsung SyncMaster 172T"
    DefaultDepth     24
    SubSection "Display"
        Depth        1
        Modes        "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        4
        Modes        "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        8
        Modes        "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        15
        Modes        "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        16
        Modes        "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        24
        Modes        "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
 
Section "ServerLayout"
    Identifier     "Default Layout"
    Screen         "Default Screen"
    InputDevice    "Cherry G83"
    InputDevice    "Logitech MX518"
EndSection
 
Section "DRI"
    Mode    0666
EndSection

Download: xorg.conf

Xsession

~/.xsession

xmodmap ~/.Xmodmaprc 
 
killall xbindkeys
/usr/bin/xbindkeys &
 
imwheel -k -b "8 9" &
 
eval `ssh-agent` &
 
synergys &
devilspie &
 
/usr/bin/xfce-mcs-manager
/usr/bin/xfwm4 --daemon
/usr/bin/xfdesktop &
update-notifier &
 
gnome-terminal --window-with-profile=syslog --geometry 72x25 --title syslog &
 
GNOME_SSH_ASKPASS_GRAB_SERVER=1 ssh-add < /dev/null &
 
exec /usr/bin/xfce4-panel

Download: xsession.txt

Xmodmap

~/.Xmodmaprc

remove Lock = Caps_Lock
keycode 66 = Super_L
keycode 113 = Mode_switch
pointer = 1 2 3 6 7 4 5 8 9 10 11

Download: xmodmaprc.txt

imwheel

~/.imwheelrc

".*"
    None, Up, Alt_L|Left
    None, Down, Alt_L|Right

Download: imwheelrc.txt

Devil's Pie

~/.devilspie/eclipse.ds

(if 
	(or 
		(matches (window_class) "[Ee]clipse")
		(is (application_name) ".")
	)  
	(set_workspace 4)
)

Download: eclipse.ds.txt

~/.devilspie/firefox.ds

(if (is (application_name) "Firefox") (set_workspace 2))

Download: firefox.ds.txt

~/.devilspie/gaim.ds

(if (is (application_name) "Pidgin") (set_workspace 1))

Download: gaim.ds.txt

~/.devilspie/syslog.ds

(if
        (is (window_name) "syslog")
        (begin
                (skip_pager)
                (skip_tasklist)
                (pin)
                (undecorate)
                (geometry "+0+0")
                (maximize_vertically)
                (below)
        )
)

Download: syslog.ds.txt

~/.devilspie/thunderbird.ds

(if (is (application_name) "Mozilla-Thunderbird") (set_workspace 3))

Download: thunderbird.ds.txt

Synergy

~/.synergy.conf

section: screens
	ripley:
	ione:
end
 
section: links
	ripley:
		left = ione
	ione:
		right = ripley
end

Download: synergy.conf