From 345b3f19d5533467683d173436483c8403810bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Hallenbarter?= Date: Mon, 26 Jan 2026 08:45:13 +0000 Subject: [PATCH] Bugfix added mkdir to create i3 folder --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index c7b583a..e59af33 100755 --- a/install.sh +++ b/install.sh @@ -41,6 +41,9 @@ if ! ask "Install this i3 configuration?"; then exit 0 fi +mkdir -p "$HOME/.config" +mkdir -p "$I3_DIR" + echo echo "[1/4] Installing packages..." sudo pacman -S --needed $(grep -v '^#' "$REPO_DIR/packages.txt")