From 648ec90fa984b9b25a550d3ac226a777f391a6bc Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 22 Nov 2023 19:04:00 -0300 Subject: [PATCH] Add Makefile --- Makefile | 22 ++++++++++++++++++++++ launcher.sh => clauncher | 0 popup.sh | 14 -------------- 3 files changed, 22 insertions(+), 14 deletions(-) create mode 100644 Makefile rename launcher.sh => clauncher (100%) delete mode 100755 popup.sh diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3d27371 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +DESTDIR = /usr/local/bin +INSTALL_PATH = $(DESTDIR)/launcher.sh + +all: install + +install: $(INSTALL_PATH) + +$(INSTALL_PATH): launcher.sh + @echo "Installing launcher.sh to $(DESTDIR)" + @install -m 755 $< $(DESTDIR) + +uninstall: + @echo "Removing launcher.sh from $(DESTDIR)" + @rm -f $(INSTALL_PATH) + +help: + @echo "Available targets:" + @echo " make install - Install launcher.sh to $(DESTDIR)" + @echo " make uninstall - Remove launcher.sh from $(DESTDIR)" + @echo " make help - Show this help message" + +.PHONY: all install uninstall diff --git a/launcher.sh b/clauncher similarity index 100% rename from launcher.sh rename to clauncher diff --git a/popup.sh b/popup.sh deleted file mode 100755 index 76f36cb..0000000 --- a/popup.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash - -TITLE=mylauncher - -SCREEN_WIDTH=`yabai -m query --displays --display | jq .frame.w*2` -SCREEN_HEIGHT=`yabai -m query --displays --display | jq .frame.h*2` - -TERM_WIDTH=1280 -TERM_HEIGHT=1260 - -let "X=SCREEN_WIDTH/2-TERM_WIDTH/2" -let "Y=SCREEN_HEIGHT/2-TERM_HEIGHT/2" - -alacritty -t "${TITLE}" -o window.position.x="${X}" -o window.position.y="${Y}" -o window.dimensions.lines=35 -o window.dimensions.columns=80 -o window.decorations=none --working-directory "$(pwd)" -e "$1"