User Tools

Site Tools


dotfiles:xinitrc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

dotfiles:xinitrc [2015/03/24 12:18] – created warnauddotfiles:xinitrc [2020/12/17 05:23] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +<code bash>
 +#!/bin/sh
  
 +#
 +# ~/.xinitrc
 +#
 +# Executed by startx (run your window manager from here)
 +
 +#xmodmap -e "pointer = 1 2 3 4 5 6 7 8 9 10 11" &
 +#imwheel -f -k -b "89" &
 +#xmodmap ~/.Xmodmap &
 +#xbindkeys &
 +#xcompmgr -c &
 +
 +
 +# Read all xinitrc.d folder
 +if [ -d /etc/X11/xinit/xinitrc.d ]; then
 +  for f in /etc/X11/xinit/xinitrc.d/*; do
 +    [ -x "$f" ] && . "$f"
 +  done
 +  unset f
 +fi
 +
 +# Start libnotify daemon
 +dex /etc/xdg/autostart/notification-daemon-autostart.desktop
 +
 +# Launch fvwm and log output in ~/fvwm-log
 +exec fvwm >& fvwm-log
 +
 +# exec wmaker
 +# exec startkde
 +# exec icewm
 +# exec blackbox
 +#exec fluxbox
 +#exec openbox
 +#exec startxfce4
 +</code>