Add Makefile

This commit is contained in:
Santiago Lo Coco 2023-11-22 19:04:00 -03:00
parent d5314ec0f6
commit 648ec90fa9
3 changed files with 22 additions and 14 deletions

22
Makefile Normal file
View File

@ -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

View File

@ -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"