summaryrefslogtreecommitdiffstats
path: root/xorg
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2009-10-16 12:54:13 +0200
committerStefan Ritter <xeno@thehappy.de>2009-10-16 12:54:13 +0200
commit08963be0a709b0c295a87aeb7f6359855329938a (patch)
treed564bb4daec8bad284d62d8924d6d3e449a0297f /xorg
parent3a336a8627c9075281f0ff8132a1b8057795aec1 (diff)
Cleanup:
* Collected xorg related stuff in xorg/ zshrc: added sfnv (scan for new version with uscan)
Diffstat (limited to 'xorg')
-rw-r--r--xorg/xcompose9
-rw-r--r--xorg/xdefaults48
-rwxr-xr-xxorg/xinitrc11
-rw-r--r--xorg/xorg.conf46
4 files changed, 114 insertions, 0 deletions
diff --git a/xorg/xcompose b/xorg/xcompose
new file mode 100644
index 0000000..0b0b1d5
--- /dev/null
+++ b/xorg/xcompose
@@ -0,0 +1,9 @@
+include "/usr/share/X11/locale/en_US.UTF-8/Compose"
+
+<dead_circumflex> <q> : "vielleicht"
+<dead_circumflex> <f> : "zwischen"
+<dead_circumflex> <s> : "Stefan Ritter <xeno@thehappy.de>"
+<dead_circumflex> <h> : ".oO()"
+<dead_circumflex> <x> : "[✘]"
+<dead_circumflex> <p> : "http_proxy=http://localhost:3128 "
+<dead_circumflex> <l> : "♥"
diff --git a/xorg/xdefaults b/xorg/xdefaults
new file mode 100644
index 0000000..ef9ff2e
--- /dev/null
+++ b/xorg/xdefaults
@@ -0,0 +1,48 @@
+#URxvt*font: -xos4-terminus-*-*-*-*-*-*-*-*-*-*-*-*
+URxvt*font: xft:DejaVu Sans Mono:size=8
+
+URxvt*buffered: true
+URxvt*internalBorder: 2
+URxvt*reverseVideo: false
+URxvt*scrollBar: false
+URxvt*scrollstyle: plain
+URxvt*secondaryscroll: true
+URxvt*saveLines: 1000
+URxvt*termName: rxvt-unicode
+URxvt*eightBitInput: true
+URxvt*metaSendsEscape: true
+URxvt*cutchars: `"()'*<>[]{|}
+URxvt*urgentOnBell: true
+URxvt*visualBell: false
+URxvt*selection.pattern-0: ([[:word:]]+)
+URxvt*inheritPixmap: false
+
+URxvt*keysym.M-u: perl:mark-yank-urls:activate_mark_mode
+URxvt*underlineURLs: true
+URxvt*perl-lib: /home/gideonstar/etc/
+URxvt*perl-ext: selection,mark-yank-urls
+URxvt*perl-ext-common: default,matcher
+URxvt*urlLauncher: firefox
+URxvt*matcher.button: 1
+URxvt*matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-]
+
+URxvt*background: #0e1310
+URxvt*foreground: #ffffff
+URxvt*colorBD: #FFFFFF
+URxvt*colorUL: #FFFFFF
+URxvt*color0: #5D5D5D
+URxvt*color1: #CC0000
+URxvt*color2: #6E8558
+URxvt*color3: #C4A000
+URxvt*color4: #3465A4
+URxvt*color5: #CEA86F
+URxvt*color6: #FFFFFF
+URxvt*color7: #FFFFFF
+URxvt*color8: #888888
+URxvt*color9: #D76666
+URxvt*color10: #B5DF8D
+URxvt*color11: #FF0000
+URxvt*color12: #729FCF
+URxvt*color13: #FFD28F
+URxvt*color14: #69C8B1
+URxvt*color15: #9AC4DD
diff --git a/xorg/xinitrc b/xorg/xinitrc
new file mode 100755
index 0000000..6e9ff0d
--- /dev/null
+++ b/xorg/xinitrc
@@ -0,0 +1,11 @@
+#!/bin/bash
+WM='awesome'
+
+keychain --clear -q ~/.ssh/id_rsa
+source ~/.keychain/`hostname`-sh > /dev/null
+feh --bg-scale ~/media/pictures/wallpaper/$(ls ~/media/pictures/wallpaper/ | sed -n $((RANDOM%$(ls ~/media/pictures/wallpaper/ | wc -l)+1))p)
+blueman-applet &
+wicd-client &
+
+exec $WM
+# vim: set tw=0:
diff --git a/xorg/xorg.conf b/xorg/xorg.conf
new file mode 100644
index 0000000..1f8d1a2
--- /dev/null
+++ b/xorg/xorg.conf
@@ -0,0 +1,46 @@
+Section "InputDevice"
+ Identifier "Keyboard"
+ Driver "kbd"
+ Option "CoreKeyboard"
+ Option "XkbRules" "xorg"
+ Option "XkbModel" "pc105"
+ Option "XkbLayout" "de"
+ Option "XkbVariant" "neo"
+EndSection
+
+Section "Device"
+ Identifier "Grafik"
+ Driver "intel"
+ Option "AccelMethod" "uxa"
+ Option "EXAOptimizeMigration" "true"
+ Option "MigrationHeuristic" "greedy"
+ Option "Tiling" "false"
+EndSection
+
+Section "Monitor"
+ Identifier "Display"
+ Option "DPMS" "false"
+EndSection
+
+Section "Screen"
+ Identifier "Screen"
+ Device "Grafik"
+ Monitor "Display"
+EndSection
+
+Section "ServerLayout"
+ Identifier "Layout"
+ InputDevice "Keyboard"
+ Screen "Screen"
+ Option "BlankTime" "0"
+ Option "StandbyTime" "0"
+ Option "SuspendTime" "0"
+ Option "OffTime" "0"
+ Option "NoPM" "1"
+EndSection
+
+Section "ServerFlags"
+ Option "DontZap" "false"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "False"
+EndSection