This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/arch_linux_init/wm.bash

29 lines
618 B
Bash
Raw Normal View History

2016-01-06 11:55:04 -06:00
#!/usr/bin/env bash
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}" )/.." && pwd)
source "$DIR/variables.bash"
2016-01-07 02:16:53 -06:00
sudo pacman -S xcb-util xcb-util-keysyms xcb-util-wm xorg-xrandr xdotool feh --noconfirm
2016-01-06 11:55:04 -06:00
mkdir -p "$REPOSITORY_PATH"
git clone https://github.com/baskerville/bspwm.git "$REPOSITORY_PATH/bspwm"
2016-01-07 02:16:53 -06:00
git clone https://github.com/baskerville/xdo.git "$REPOSITORY_PATH/xdo"
2016-01-06 11:55:04 -06:00
git clone https://github.com/baskerville/sxhkd.git "$REPOSITORY_PATH/sxhkd"
2016-01-07 02:16:53 -06:00
cd "$REPOSITORY_PATH/xdo"
make
sudo make install
cd -
2016-01-06 11:55:04 -06:00
cd "$REPOSITORY_PATH/bspwm"
make
sudo make install
cd -
cd "$REPOSITORY_PATH/sxhkd"
make
sudo make install
cd -