Add Makefile
This commit is contained in:
parent
d5314ec0f6
commit
648ec90fa9
|
@ -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
|
14
popup.sh
14
popup.sh
|
@ -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"
|
|
Loading…
Reference in New Issue