Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

[ease of use] add install from source scripts #12

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions install-arch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
pacman -Syu dwm libx11-dev libxinerama-dev libxft-dev libx11-xcb-dev libxcb-res0-dev libx11-dev
cd source/dwm
sudo make install
cd ..
cd source/dmenu
sudo make install
cd ..
cd source/slock
sudo make install
cd ..
cd source/st
sudo make install
cd ..
13 changes: 13 additions & 0 deletions install-deb.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sudo apt install dwm libx11-dev libxinerama-dev libxft-dev libx11-xcb-dev libxcb-res0-dev libx11-dev
cd source/dwm
sudo make install
cd ..
cd source/dmenu
sudo make install
cd ..
cd source/slock
sudo make install
cd ..
cd source/st
sudo make install
cd ..