diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f04f794 --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +termux: termux-pkgs termux-dots utils-sh st + +st: + cd builds/st/ && CC=clang make && cp st ~/.local/bin/st + +utils-sh: + cp builds/utils/sh/* ~/.local/bin + +termux-pkgs: + pkg install \ + neovim \ + git \ + tigervnc \ + sxhkd \ + clang \ + fontconfig \ + xorgproto \ + fzy \ + libxft \ + firefox \ + htop \ + pkg-config \ + bspwm \ + x11-repo + +termux-dots: + ln -sf $(CURDIR)/.config ~/.config + ln -sf ~/.config/bash/bashrc ~/.bashrc + ln -sf ~/.config/bash/profile ~/.bash_profile diff --git a/builds/utils/sh/start-termux-xorg b/builds/utils/sh/start-termux-xorg new file mode 100755 index 0000000..6172eb2 --- /dev/null +++ b/builds/utils/sh/start-termux-xorg @@ -0,0 +1,4 @@ +vncserver -localhost +export DISPLAY=":1" +sxhkd & +bspwm &