40 lines
1.0 KiB
Bash
Executable File
40 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "
|
|
_ _ ( ) ( )_
|
|
(_) _ _ ___ (_) ___| |__ _ _| _)____
|
|
| |/ _ ) _ \ | __) _ \ ) ( ) | (_ )
|
|
| | (_| | ( ) | |__ \ | | | (_) | |_ / /_
|
|
_ | |\__ _)_) (_)_)____/_) (_)\___/ \__)____)
|
|
( )_| |
|
|
\___/
|
|
|
|
=> Migration to V4
|
|
-> WARNING: This will remove the old configurations from the system
|
|
"
|
|
|
|
if ! [[ -f ~/.config/janishutz/platform ]]; then
|
|
platform=""
|
|
read -p "Choose on the platform (l/D): " platform
|
|
mkdir ~/.config/janishutz
|
|
if [ $platform != "l" ]; then
|
|
platform="d"
|
|
fi
|
|
echo "$platform" >~/.config/janishutz/platform
|
|
echo "n" >~/.config/janishutz/docked
|
|
fi
|
|
|
|
confirmation=""
|
|
read -p "Also install the system-wide environment file? (y/N) " confirmation
|
|
if [[ "$confirmation" == "y" ]]; then
|
|
sudo cp ./system/environment /etc/environment
|
|
fi
|
|
|
|
rm -rf ~/.config/hypr
|
|
rm ~/.config/platform
|
|
rm -rf ~/.config/rofi
|
|
rm -rf ~/.config/ags
|
|
rm -rf ~/.config/astal
|
|
|
|
cp -r ./config/* ~/.config
|