install.sh: add xgetres and xmousepasteblock compilers
This commit is contained in:
parent
dd215a3ba0
commit
7bc20b9048
1 changed files with 23 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue