mirror of
https://github.com/notwa/rc
synced 2025-02-05 07:43:22 -08:00
barebones xinitrc
This commit is contained in:
parent
2cb525a06d
commit
f0a6b990bd
1 changed files with 17 additions and 2 deletions
19
home/xinitrc
19
home/xinitrc
|
@ -1,2 +1,17 @@
|
||||||
autocutsel -fork &
|
#!/bin/sh
|
||||||
autocutsel -selection PRIMARY -fork &
|
#
|
||||||
|
# ~/.xinitrc
|
||||||
|
#
|
||||||
|
# Executed by startx (run your window manager from here)
|
||||||
|
|
||||||
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||||
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
||||||
|
[ -x "$f" ] && . "$f"
|
||||||
|
done
|
||||||
|
unset f
|
||||||
|
fi
|
||||||
|
|
||||||
|
# exec gnome-session
|
||||||
|
# exec startkde
|
||||||
|
# exec startxfce4
|
||||||
|
# ...or the Window Manager of your choice
|
||||||
|
|
Loading…
Add table
Reference in a new issue