Created
May 27, 2014 14:39
-
-
Save Duologic/27f72306f2e20f824520 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # ~/.xinitrc | |
| # | |
| if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
| for f in /etc/X11/xinit/xinitrc.d/*; do | |
| [ -x "$f" ] && . "$f" | |
| done | |
| unset f | |
| fi | |
| # Import resources | |
| xrdb -merge ~/.Xresources | |
| # Add fonts in X | |
| xset +fp /usr/share/fonts/ | |
| xset fp rehash | |
| # Compose key | |
| setxkbmap -option compose:ralt | |
| # Load Xmodmap | |
| xmodmap ~/.Xmodmap | |
| # Transparency | |
| xcompmgr & | |
| # Clipboard | |
| autocutsel -fork | |
| autocutsel -selection PRIMARY -fork | |
| autocutsel -selection CLIPBOARD -fork | |
| # Screensaver | |
| xscreensaver -no-splash & | |
| # Window Manager | |
| exec awesome |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment