Compare commits
5 Commits
master
...
7b39968a35
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b39968a35 | |||
| b01b384d4a | |||
| bb7ae8514c | |||
| bb8b4d1b71 | |||
| ad8e40b78e |
@@ -12,20 +12,10 @@ users:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
- floccus
|
||||
manage_css: true
|
||||
media:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
manage_css: true
|
||||
bigger_font: true
|
||||
mail: hannes@hkoerber.de
|
||||
ssh_agent: false
|
||||
gpg_agent: true
|
||||
|
||||
@@ -12,7 +12,6 @@ users:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
- floccus
|
||||
@@ -21,7 +20,6 @@ users:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
manage_css: true
|
||||
|
||||
@@ -27,7 +27,6 @@ users:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
- floccus
|
||||
@@ -36,7 +35,6 @@ users:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
manage_css: true
|
||||
|
||||
@@ -11,7 +11,6 @@ users:
|
||||
default:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
manage_css: true
|
||||
@@ -34,7 +33,6 @@ users:
|
||||
extensions:
|
||||
- ublock-origin
|
||||
- passff
|
||||
- privacy-badger17
|
||||
- tree-style-tab
|
||||
- i-dont-care-about-cookies
|
||||
- floccus
|
||||
|
||||
@@ -77,7 +77,7 @@ font-libertine:
|
||||
- libertinus-font
|
||||
font-awesome:
|
||||
archlinux:
|
||||
- ttf-font-awesome
|
||||
- woff2-font-awesome
|
||||
font-noto:
|
||||
archlinux:
|
||||
- noto-fonts
|
||||
|
||||
Submodule pkgbuilds/claude-code updated: 71aff8b2a6...a8907ed771
@@ -62,12 +62,29 @@ readarray -d $'\0' -t packages_to_remove < <(comm --zero-terminated -13 \
|
||||
printf '%s\0' "${package}"
|
||||
done)
|
||||
|
||||
packages_removed=0
|
||||
|
||||
if (( "${#packages_to_remove[@]}" > 0 )) ; then
|
||||
echo "found the following explicitly installed packages that are not configured:"
|
||||
for pkg in "${packages_to_remove[@]}" ; do
|
||||
echo "${pkg}"
|
||||
done
|
||||
sudo pacman -Rcns "${packages_to_remove[@]}" "${@}" || exit $?
|
||||
packages_removed=1
|
||||
fi
|
||||
|
||||
readarray -t orphans < <(pacman -Qdtq)
|
||||
|
||||
if (( "${#orphans[@]}" > 0 )) ; then
|
||||
echo "found the following orphaned packages:"
|
||||
for pkg in "${orphans[@]}" ; do
|
||||
echo "${pkg}"
|
||||
done
|
||||
sudo pacman -Rcns "${orphans[@]}" "${@}" || exit $?
|
||||
packages_removed=1
|
||||
fi
|
||||
|
||||
if (( packages_removed)) ; then
|
||||
exit 123
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user