summaryrefslogtreecommitdiff
path: root/setup_debian.sh
diff options
context:
space:
mode:
Diffstat (limited to 'setup_debian.sh')
-rw-r--r--setup_debian.sh10
1 files changed, 3 insertions, 7 deletions
diff --git a/setup_debian.sh b/setup_debian.sh
index 767e111..51ebc19 100644
--- a/setup_debian.sh
+++ b/setup_debian.sh
@@ -24,7 +24,6 @@ sudo chown $USER:$USER -R /opt
# Go To `/opt` And Clone Repositories
cd /opt
git clone https://github.com/compromyse/dwm
-git clone https://github.com/compromyse/dmenu
# Install `DWM`
cd /opt/dwm
@@ -32,12 +31,6 @@ make
sudo make install
make clean
-# Install `DMenu`
-cd /opt/dmenu
-make
-sudo make install
-make clean
-
# Install `ly`
cd /opt
git clone --recurse-submodules https://github.com/fairyglade/ly
@@ -100,5 +93,8 @@ sudo apt-get install -y terminator nemo
# Make `bash` Case Insensitive
echo 'set completion-ignore-case On' | sudo tee -a /etc/inputrc
+# Make systemd ignore power key
+echo "HandlePowerKey=ignore" | sudo tee -a /etc/systemd/logind.conf
+
# Remove The Temporary Directory
rm -rf $TEMP_DIR