summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2022-12-06 11:20:13 +0100
committeryuzu-eva <stevenhu@web.de>2022-12-06 11:20:13 +0100
commit77bdf06d5684112c6150a4edfa76891e4eec29b1 (patch)
tree433cd6bae2df89102711f2b1fb0095ef91cf769c
parent83a64c51f53156b78955bcd4251399420f37dbca (diff)
making a new repo for install script, so i removed it from here
-rw-r--r--install.sh52
-rw-r--r--sources.list2
2 files changed, 0 insertions, 54 deletions
diff --git a/install.sh b/install.sh
deleted file mode 100644
index 886792a..0000000
--- a/install.sh
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-
-# install script for debian unstable
-
-# check if script is run as root
-if [[ $EUID -ne 0 ]]; then
- echo "You must be a root user to run this script, please run sudo ./install.sh" 2>&1
- exit 1
-fi
-
-# change debian so unstable branch
-cp /etc/apt/sources.list /etc/apt/sources.list.bak
-cp sources.list /etc/apt/sources.list
-
-username=$(id -u -n 1000)
-builddir=$(pwd)
-
-# update packages list and update system
-apt update
-apt upgrade -y
-
-mkdir -p /home/$username/.config
-mkdir -p /home/$username/.local/src
-
-# install building stuff
-apt install build-essential libtool pkg-config -y
-
-# install dependencies for st and dwm
-apt install libx11-dev libxext-dev libxft-dev libxrender-dev libfontconfig1-dev libfreetype6-dev \
- libx11-xcb-dev libxcb-res0-dev libxinerama-dev xutils-dev -y
-
-apt install xinit -y
-
-# install dwm
-cd /home/$username/.local/src
-git clone https://github.com/yuzu-eva/my-personal-dwm dwm
-cd dwm
-make && make install
-
-# install st
-cd /home/$username/.local/src
-git clone https://github.com/yuzu-eva/my-personal-st st
-cd st
-make && make install
-
-#install dmenu
-cd /home/$username/.local/src
-git clone https://github.com/yuzu-eva/my-personal-dmenu dmenu
-cd dmenu
-make && make install
-
-cd
diff --git a/sources.list b/sources.list
deleted file mode 100644
index e6b7c2e..0000000
--- a/sources.list
+++ /dev/null
@@ -1,2 +0,0 @@
-deb http://deb.debian.org/debian/ sid main non-free contrib
-deb-src http://deb.debian.org/debian/ sid main non-free contrib