update to .dot-files-laptop
This commit is contained in:
parent
ae9a611ea6
commit
3bae03e47a
46 changed files with 3332 additions and 0 deletions
13
.dot-files-laptop/.bin/sh/build.sh
Executable file
13
.dot-files-laptop/.bin/sh/build.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Build package and prompt for cleaning
|
||||
|
||||
{
|
||||
makepkg -si;
|
||||
read -p "Clean leftover files? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
git clean -dxfi
|
||||
fi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue