User Tools

Site Tools


dotfiles:xinitrc
#!/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
dotfiles/xinitrc.txt · Last modified: 2020/12/17 05:23 by 127.0.0.1