#!/bin/sh
if [ -e ~/.config ]; then
  :
else
  mkdir ~/.config
fi
if [ -e ~/.config/wayfire.ini ]; then
  :
else
  cp /usr/share/wayfire/wayfire.ini ~/.config/wayfire.ini
fi
if [ -e ~/.config/wf-shell.ini ]; then
  :
else
  cp /usr/share/wayfire/wf-shell.ini ~/.config/wf-shell.ini
fi
if [ -e ~/.config/dconf ]; then
  :
else
  cp -r /usr/share/wayfire/dconf ~/.config/
fi
sh /bin/startsession