Add suckless tabbed fork to dotfiles
This commit is contained in:
parent
8603156689
commit
d641e90503
@ -17,7 +17,7 @@ super + o
|
|||||||
$HOME/.scripts/websearch
|
$HOME/.scripts/websearch
|
||||||
# st
|
# st
|
||||||
super + Return
|
super + Return
|
||||||
st
|
tabbed -r 2 st -w ''
|
||||||
# vifm
|
# vifm
|
||||||
super + r
|
super + r
|
||||||
st -e vifm
|
st -e vifm
|
||||||
|
20
dotman
20
dotman
@ -34,17 +34,27 @@ install_packages() {
|
|||||||
sudo pip install -U grip
|
sudo pip install -U grip
|
||||||
}
|
}
|
||||||
|
|
||||||
install_st_and_dmenu() {
|
install_st() {
|
||||||
cd ~/.cache/dotfiles/
|
cd ~/.cache/dotfiles/
|
||||||
git clone https://github.com/samedamci/st
|
git clone https://github.com/samedamci/st
|
||||||
cd st
|
cd st
|
||||||
sudo make clean install
|
sudo make clean install
|
||||||
|
}
|
||||||
|
|
||||||
|
install_dmenu() {
|
||||||
cd ~/.cache/dotfiles/
|
cd ~/.cache/dotfiles/
|
||||||
git clone https://github.com/samedamci/dmenu
|
git clone https://github.com/samedamci/dmenu
|
||||||
cd dmenu
|
cd dmenu
|
||||||
sudo make clean install
|
sudo make clean install
|
||||||
}
|
}
|
||||||
|
|
||||||
|
install_tabbed() {
|
||||||
|
cd ~/.cache/dotfiles
|
||||||
|
git clone https://github.com/samedamci/tabbed
|
||||||
|
cd tabbed
|
||||||
|
sudo make clean install
|
||||||
|
}
|
||||||
|
|
||||||
config_pacman() {
|
config_pacman() {
|
||||||
su root -c "cat >/etc/pacman.conf <<EOF
|
su root -c "cat >/etc/pacman.conf <<EOF
|
||||||
|
|
||||||
@ -165,8 +175,12 @@ printf "\nDo you want to install packages? (Y/n): "; read CHOICE
|
|||||||
if [ "$CHOICE" = "Y" ]; then echo "Installing packages..." && install_packages &>$LOG_DIR/install_packages.log; fi
|
if [ "$CHOICE" = "Y" ]; then echo "Installing packages..." && install_packages &>$LOG_DIR/install_packages.log; fi
|
||||||
clear
|
clear
|
||||||
greeter
|
greeter
|
||||||
printf "\nDo you want to compile nad install st and dmenu? (Y/n): "; read CHOICE
|
printf "\nDo you want to compile nad install st? (Y/n): "; read CHOICE
|
||||||
if [ "$CHOICE" = "Y" ]; then echo "Compiling and installing st and dmenu..." && install_st_and_dmenu &>$LOG_DIR/install_st_and_dmenu.log; fi
|
if [ "$CHOICE" = "Y" ]; then echo "Compiling and installing st..." && install_st &>$LOG_DIR/install_st.log; fi
|
||||||
|
printf "\nDo you want to compile nad install dmenu? (Y/n): "; read CHOICE
|
||||||
|
if [ "$CHOICE" = "Y" ]; then echo "Compiling and installing dmenu..." && install_dmenu &>$LOG_DIR/install_dmenu.log; fi
|
||||||
|
printf "\nDo you want to compile nad install tabbed? (Y/n): "; read CHOICE
|
||||||
|
if [ "$CHOICE" = "Y" ]; then echo "Compiling and installing tabbed..." && install_tabbed &>$LOG_DIR/install_tabbed.log; fi
|
||||||
clear
|
clear
|
||||||
greeter
|
greeter
|
||||||
printf "\nDo you want to copy configs? (Y/n): "; read CHOICE
|
printf "\nDo you want to copy configs? (Y/n): "; read CHOICE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user