From ae6dbb4415c26e5f03af5985affe2bd97f556f41 Mon Sep 17 00:00:00 2001 From: Mateja Date: Wed, 25 Nov 2020 13:02:09 +0100 Subject: First commit --- setup.sh | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100755 setup.sh (limited to 'setup.sh') diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..08d2223 --- /dev/null +++ b/setup.sh @@ -0,0 +1,129 @@ +#!/bin/bash + +sudo apt update + +echo "Installing basic software..." +sudo apt install -y gpg git pass build-essential +sudo apt install -y unzip wget curl + + +echo "Installing Xorg..." +sudo apt install -y xorg xorg-drivers xinit xterm + + +read -p "Do you want to install Qtile? " -n 1 -r +echo +if [[ $REPLY =~ ^[Yy]$ ]] +then + echo "Installing Qtile..." + sudo apt install -y libxcb-render0-dev libffi-dev libcairo2 libpangocairo-1.0-0 python-dbus + sudo apt install -y python3-pip + + pip3 install xcffib + pip3 install --no-cache-dir cairocffi + pip3 install qtile + +cat > /tmp/qtile.desktop <