Skip to content
Snippets Groups Projects
Commit 1c91521b authored by Stephane Armanet's avatar Stephane Armanet
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #70893 failed
#!/bin/bash
# {{ ansible_managed }}
#/etc/X11/xinit/Xsession mate-session
RESET_PROFILE="{{ desktop_base_xfce_profile_reset }}"
if [ $RESET_PROFILE == "true" ]
then
rm -rf $HOME/.config/xfce4
fi
if ! [ -d $HOME/.config/xfce4 ]
then
mkdir -p $HOME/.config 2> /dev/null
cp -r /usr/local/src/xfce4.{{ desktop_base_xfce_profile }} $HOME/.config/xfce4
chown -R $USER: $HOME/.config
fi
/usr/bin/dbus-launch --exit-with-session /usr/bin/startxfce4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment