Compare commits
No commits in common. "22c57660092c1497116c5344412cda916ecdaaa8" and "75576765d4ad791001a37c0f92de399601ebdd14" have entirely different histories.
22c5766009
...
75576765d4
8 changed files with 19 additions and 15 deletions
|
@ -30,14 +30,11 @@ general {
|
||||||
border_size = 2
|
border_size = 2
|
||||||
col.active_border = rgba(df80ffff) rgba(cc33ffff) 90deg
|
col.active_border = rgba(df80ffff) rgba(cc33ffff) 90deg
|
||||||
col.inactive_border = rgba(886c9322)
|
col.inactive_border = rgba(886c9322)
|
||||||
|
col.group_border = rgba(f2f2f280)
|
||||||
|
col.group_border_active = rgb(3366ff) rgb(33ccff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
}
|
}
|
||||||
|
|
||||||
group {
|
|
||||||
col.border_inactive = rgba(f2f2f280)
|
|
||||||
col.border_active = rgb(3366ff) rgb(33ccff)
|
|
||||||
}
|
|
||||||
|
|
||||||
# Decoration
|
# Decoration
|
||||||
decoration {
|
decoration {
|
||||||
rounding = 5
|
rounding = 5
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh
|
||||||
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
|
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
|
||||||
apt-get clean
|
apt-get clean
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh
|
||||||
paru -Scc
|
paru -Scc
|
||||||
paru -Fy
|
paru -Fy
|
||||||
paru
|
paru
|
||||||
paru -Qdtq | paru -Rns -
|
paru -Qdtq | paru -Rns -
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh
|
||||||
apt clean
|
apt clean
|
||||||
pkg update
|
pkg update
|
||||||
pkg upgrade
|
pkg upgrade
|
||||||
apt autopurge -y
|
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
|
sudo waydroid upgrade
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh
|
||||||
yabridgectl sync
|
yabridgectl sync
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh
|
||||||
|
|
||||||
ssh-add
|
|
||||||
|
|
||||||
update_repo() {
|
update_repo() {
|
||||||
cd "$1" || return
|
cd "$1" || return
|
||||||
|
@ -8,9 +6,8 @@ update_repo() {
|
||||||
git pull
|
git pull
|
||||||
}
|
}
|
||||||
|
|
||||||
cd ~/git
|
cd ~/git || exit
|
||||||
|
|
||||||
set +ex
|
|
||||||
for i in *; do
|
for i in *; do
|
||||||
while [ "$(jobs -p | wc -l)" -ge 4 ]; do
|
while [ "$(jobs -p | wc -l)" -ge 4 ]; do
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
Loading…
Reference in a new issue