From 7bc20b9048937dd19230db39e783af0e6b32a84a Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Sun, 3 Apr 2022 22:00:30 -0600 Subject: [PATCH] install.sh: add xgetres and xmousepasteblock compilers --- linux/install.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/linux/install.sh b/linux/install.sh index d5524c0..bf5af69 100755 --- a/linux/install.sh +++ b/linux/install.sh @@ -56,3 +56,26 @@ cp -f "${PWD}/.XCompose" "${HOME}/.XCompose" echo "Installing .zshrc" cp -f "${PWD}/.zshrc" "${HOME}/.zshrc" + +# Distro agnostic tools to be compiled +echo "-- Compiling xgetres --" +echo "Cloning..." +git clone https://github.com/tamirzb/xgetres.git /tmp/xgetres +cd /tmp/xgetres + +echo "Compiling..." +make + +echo "Installing..." +sudo make install + +echo "-- Compiling xmousepasteblock --" +echo "Cloning..." +git clone https://github.com/milaq/XMousePasteBlock.git /tmp/xmpb +cd /tmp/xmpb + +echo "Compiling..." +make + +echo "Installing..." +sudo make install