summaryrefslogtreecommitdiffstats
path: root/xorg
diff options
context:
space:
mode:
Diffstat (limited to 'xorg')
-rw-r--r--xorg/gtkrc-2.01
-rw-r--r--xorg/xcompose11
-rwxr-xr-xxorg/xinitrc36
-rw-r--r--xorg/xorg.conf44
4 files changed, 0 insertions, 92 deletions
diff --git a/xorg/gtkrc-2.0 b/xorg/gtkrc-2.0
deleted file mode 100644
index 7e04893..0000000
--- a/xorg/gtkrc-2.0
+++ /dev/null
@@ -1 +0,0 @@
-gtk-font-name="Sans Serif 7"
diff --git a/xorg/xcompose b/xorg/xcompose
deleted file mode 100644
index 283493c..0000000
--- a/xorg/xcompose
+++ /dev/null
@@ -1,11 +0,0 @@
-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> <v> : "[✔]"
-<dead_circumflex> <p> : "http_proxy=http://localhost:3128 "
-<dead_circumflex> <l> : "♥"
-<dead_circumflex> <n> : "♫"
diff --git a/xorg/xinitrc b/xorg/xinitrc
deleted file mode 100755
index 56460bb..0000000
--- a/xorg/xinitrc
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-WM='i3'
-
-setxkbmap de neo
-setxkbmap -option terminate:ctrl_alt_bksp
-
-if [ -e /usr/bin/xset ]; then
- xset +fp /usr/share/fonts/local
- xset fp rehash
- xset -b
- xset dpms force on
- xset s off
-fi
-
-if [ -e /usr/bin/xrandr ]; then
- if [ $(hostname) = "galahad" ]; then
- if [ $(xrandr -q | grep VGA1 | awk '{print $2}') = "disconnected" ]; then
- xrandr --output LVDS1 --auto --output VGA1 --off
- else
- xrandr --output LVDS1 --off --output VGA1 --auto
- fi
- fi
-fi
-
-feh --bg-scale ~/media/bilder/wallpaper/$(ls ~/media/bilder/wallpaper/ | sort --random-sort | head -1)
-
-if [ -e /usr/bin/xscreensaver ]; then
- xscreensaver -no-splash &
-fi
-
-if [ -e /usr/bin/ssh-agent ]; then
- exec ssh-agent $WM
-else
- exec $WM
-fi
diff --git a/xorg/xorg.conf b/xorg/xorg.conf
deleted file mode 100644
index d8ca7a3..0000000
--- a/xorg/xorg.conf
+++ /dev/null
@@ -1,44 +0,0 @@
-Section "InputDevice"
- Identifier "argh"
- Driver "kbd"
- Option "CoreKeyboard"
- Option "XkbRules" "xorg"
- Option "XkbModel" "pc105"
- Option "XkbLayout" "de"
- Option "XkbVariant" "neo"
- # Make ctrl-alt-backspace working
- Option "XkbOptions" "terminate:ctrl_alt_bksp"
-EndSection
-
-Section "Device"
- Identifier "aaaahhh"
- Driver "intel"
-EndSection
-
-Section "Monitor"
- Identifier "Display"
- Option "DPMS" "false"
-EndSection
-
-Section "Screen"
- Identifier "gnarf"
- Device "aaaahhh"
- Monitor "Display"
-EndSection
-
-Section "ServerLayout"
- Identifier "mumu"
- InputDevice "argh"
- Screen "gnarf"
- 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