mirror of
https://github.com/Snigdha-OS/snigdhaos-gnome-config.git
synced 2025-09-23 13:24:56 +02:00
23 lines
469 B
Bash
23 lines
469 B
Bash
#!/bin/bash
|
|
#
|
|
# ~/.xinitrc
|
|
#
|
|
# Executed by startx (run your window manager from here)
|
|
userresources=$HOME/.Xresources
|
|
usermodmap=$HOME/.Xmodmap
|
|
sysresources=/etc/X11/xinit/.Xresources
|
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
|
|
|
# Xinitrc.d
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
unset f
|
|
fi
|
|
|
|
# Start GNOME session
|
|
export XDG_SESSION_TYPE=x11
|
|
export GDK_BACKEND=x11
|
|
exec gnome-session
|