2021-10-13 03:36:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
CONFIG_DIR="/home/alex/.config"
|
|
|
|
|
|
|
|
echo "Copying hlwm config... $CONFIG_DIR/herbstluftwm"
|
|
|
|
cp herbstluftwm/* "$CONFIG_DIR/herbstluftwm"
|
|
|
|
if [ "$1" == "reload" ]; then
|
|
|
|
herbstclient reload
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Copying alacritty config..."
|
|
|
|
cp alacritty/* "$CONFIG_DIR/alacritty"
|
|
|
|
|
2021-10-18 21:41:06 +00:00
|
|
|
echo "Copying picom config..."
|
|
|
|
cp picom/* "$CONFIG_DIR/picom"
|
|
|
|
|
2021-10-13 03:36:47 +00:00
|
|
|
echo "Done"
|