This commit is contained in:
λmolinae 2025-05-19 18:17:59 -06:00
parent c67cb23497
commit ff87fdba38

View file

@ -22,31 +22,31 @@ read_software(){
dl_wallpapers() {
cd "$HOME"/Pictures/
git clone "https://git.amolinae.com/amolinae06/Wallpapers" && cd Wallpapers
rm -rf .git; cd "$HOME"
git clone "https://git.amolinae.com/amolinae06/Wallpapers" >/dev/null 2>&1 && cd Wallpapers
rm -rf .git; cd "$HOME" >/dev/null 2>&1
}
make_dwl() {
cd $HOME/.local/src/dwl/
sed -i "s|/home/amolinae/|/home/"$user"/|g" config.h
bwroot make install
sed -i "s|/home/amolinae/|/home/"$user"/|g" config.h >/dev/null 2>&1
bwroot make install >/dev/null 2>&1
}
make_slstatus() {
cd $HOME/.local/src/slstatus/
bwroot make install
bwroot make install >/dev/null 2>&1
}
make_ctpv() {
cd $HOME/.local/src/hellwal/
bwroot make install
bwroot make install >/dev/null 2>&1
}
make_hellwal() {
mkdir .cache/hellwal/
cd $HOME/.local/src/hellwal/
bwroot make install
cd; hellwal -i Pictures/Wallpapers/vatihall.jpg
bwroot make install >/dev/null 2>&1
cd; hellwal -i Pictures/Wallpapers/vatihall.jpg >/dev/null 2>&1
}
user="$@"