Compare commits
No commits in common. "22c57660092c1497116c5344412cda916ecdaaa8" and "c1569d02151b769d2b5d7146faff0ef5d0448e6d" have entirely different histories.
22c5766009
...
c1569d0215
7 changed files with 17 additions and 10 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -ex
|
||||
#!/bin/sh
|
||||
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
|
||||
apt-get clean
|
||||
apt-get update
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/sh -ex
|
||||
#!/bin/sh
|
||||
paru -Scc
|
||||
paru -Fy
|
||||
paru
|
||||
paru -Qdtq | paru -Rns -
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/sh -ex
|
||||
#!/bin/sh
|
||||
apt clean
|
||||
pkg update
|
||||
pkg upgrade
|
||||
apt autopurge -y
|
||||
|
||||
|
|
6
config/updateall/scripts/10-yay
Executable file
6
config/updateall/scripts/10-yay
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
yay -Scc
|
||||
yay -Fy
|
||||
yay
|
||||
yay -Qdtq | yay -Rns -
|
||||
|
|
@ -1,2 +1,3 @@
|
|||
#!/bin/sh -ex
|
||||
#!/bin/sh
|
||||
sudo waydroid upgrade
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
#!/bin/sh -ex
|
||||
#!/bin/sh
|
||||
yabridgectl sync
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
#!/bin/sh -ex
|
||||
|
||||
ssh-add
|
||||
#!/bin/sh
|
||||
|
||||
update_repo() {
|
||||
cd "$1" || return
|
||||
|
@ -8,9 +6,8 @@ update_repo() {
|
|||
git pull
|
||||
}
|
||||
|
||||
cd ~/git
|
||||
cd ~/git || exit
|
||||
|
||||
set +ex
|
||||
for i in *; do
|
||||
while [ "$(jobs -p | wc -l)" -ge 4 ]; do
|
||||
sleep 1
|
||||
|
|
Loading…
Reference in a new issue