Skip to content

Instantly share code, notes, and snippets.

@Duologic
Created May 27, 2014 14:39
Show Gist options
  • Select an option

  • Save Duologic/27f72306f2e20f824520 to your computer and use it in GitHub Desktop.

Select an option

Save Duologic/27f72306f2e20f824520 to your computer and use it in GitHub Desktop.
#!/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