diff --git a/apply.sh b/apply.sh new file mode 100755 index 0000000..5428f52 --- /dev/null +++ b/apply.sh @@ -0,0 +1,14 @@ +#!/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" + +echo "Done"