19 lines
487 B
Bash
Executable file
19 lines
487 B
Bash
Executable file
#!/bin/sh
|
|
|
|
rm -rf lightdm/ kitty/ sway/ waybar/ helix/ dunst/ aliases packages
|
|
|
|
xbps-query -m | while IFS= read -r line; do
|
|
echo "$line" | rev | cut -d'-' -f2- | rev
|
|
done > packages
|
|
|
|
mkdir lightdm
|
|
cp /etc/lightdm/lightdm.conf lightdm
|
|
cp /etc/lightdm/lightdm-mini-greeter.conf lightdm
|
|
cp /etc/lightdm/bg.png lightdm
|
|
|
|
cp ~/.bash_aliases aliases
|
|
cp -r ~/.config/kitty kitty
|
|
cp -r ~/.config/sway sway
|
|
cp -r ~/.config/waybar waybar
|
|
cp -r ~/.config/helix helix
|
|
cp -r ~/.config/dunst dunst
|