This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-11 07:22:17 +01:00
|
|
|
#!/bin/sh
|
|
|
|
if [ -e ~/.config ]; then
|
2023-08-05 21:19:04 +01:00
|
|
|
:
|
|
|
|
else
|
|
|
|
mkdir ~/.config
|
|
|
|
fi
|
2023-09-11 07:22:17 +01:00
|
|
|
if [ -e ~/.config/wayfire.ini ]; then
|
2023-08-05 21:19:04 +01:00
|
|
|
:
|
|
|
|
else
|
|
|
|
cp /usr/share/wayfire/wayfire.ini ~/.config/wayfire.ini
|
|
|
|
fi
|
2023-09-11 07:22:17 +01:00
|
|
|
if [ -e ~/.config/wf-shell.ini ]; then
|
2023-08-05 21:19:04 +01:00
|
|
|
:
|
|
|
|
else
|
|
|
|
cp /usr/share/wayfire/wf-shell.ini ~/.config/wf-shell.ini
|
|
|
|
fi
|
2023-09-11 07:22:17 +01:00
|
|
|
if [ -e ~/.config/dconf ]; then
|
2023-08-05 21:19:04 +01:00
|
|
|
:
|
|
|
|
else
|
|
|
|
cp -r /usr/share/wayfire/dconf ~/.config/
|
|
|
|
fi
|
2023-09-11 07:22:17 +01:00
|
|
|
sh /bin/startsession
|