From d969d0170e2cfc37415dbfb065f3366710e51b46 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 12 Oct 2021 23:36:47 -0400 Subject: [PATCH] add alacritty config --- apply.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 apply.sh 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"