You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
670 B
25 lines
670 B
# Window Manager |
|
echo "Installing window manager..." |
|
sudo apt-get -qq -y install xmonad |
|
sudo apt-get -qq -y install compton |
|
sudo apt-get -qq -y install libghc-xmonad-contrib-dev |
|
sudo apt-get -qq -y install xorg |
|
sudo apt-get -qq -y install xinit |
|
sudo apt-get -qq -y install wmname |
|
sudo apt-get -qq -y install libxcb-xinerama0-dev |
|
sudo apt-get -qq -y install libxcb-randr0-dev |
|
sudo apt-get -qq -y install xbacklight |
|
|
|
# Build and install lemonbar from source |
|
echo "Installing lemonbar from source..." |
|
pushd |
|
cd ~ |
|
git clone https://github.com/LemonBoy/bar.git |
|
cd bar/ |
|
make |
|
sudo make install |
|
popd |
|
|
|
# Dmenu |
|
echo "Installing Dmenu..." |
|
sudo apt-get -qq -y install suckless-tools
|
|
|