9 lines
386 B
Bash
Executable File
9 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Installing i3blocks..."
|
|
[[ -d "$HOME/.config/i3blocks" ]] && mv "$HOME/.config/i3blocks"{,.bak}
|
|
git clone https://will.kein.hk/git/koksnuss/simple-i3blocks.git ~/.config/i3blocks
|
|
cd "$HOME/.config/i3blocks/modules"
|
|
chmod u+x audio backlight battery cpu datetime ip ram storage
|
|
echo "Finished, please reload i3. Normally you can do this with the shortcut MOD+SHIFT+R"
|