Compare commits

...

4 Commits
1.1.1 ... main

2 changed files with 36 additions and 5 deletions

View File

@ -1,15 +1,28 @@
# pman.sh
A `pacman` helper script, because you forget the stupid flags
A `pacman` helper script, because you forget all the stupid flags
## Usage / Features:
- aur/yay
- search
- info
- localinfo
- provides
- providefiles
- installed
- install
- update
- upgradable
- upgrade
- install
- provides
- remove
- purge
- clean
- reflector
- config
`config` is the only flag that is not appended to `pacman`, instead it resolves to `nano /etc/pacman.conf`.
`reflector` and `config` are the only flag that are not appended to `pacman` (or `yay`)<br>
instead `reflector` resolves to `reflector` with the previously used parameters stored in `/etc/pacman.d/mirrorlist`<br>
and `config` resolves to `nano /etc/pacman.conf`.
`sudo` gets prepended automatically if the command requires it and if installed - no, there is no check if your user is in the `sudo` group, if you download this script you should already be, or know you can only use part of this utility
`sudo` gets prepended automatically if the command requires root privileges, if the UID is not 0 (you are not `root`) and if `sudo` installed.<br>
no, there is no check if your user is in the `sudo` group, if you download this script you should already be, or know you can only use part of this utility<br>
tho such a feature is planned, to make the script truly ubiquitus.

18
pman.sh
View File

@ -36,6 +36,15 @@ elif [ "$command_args" = "config" ]; then
command="nano"
command_args="/etc/pacman.conf"
su_needed=true
elif [ "$command_args" = "reflector" ]; then
command="reflector"
command_args=$(cat /etc/pacman.d/mirrorlist 2>/dev/null | grep -e "With.*reflector" | sed 's/#.*reflector //')
# Check if reflector was actually used to generate the mirrorlist
if [ "$command_args" = "" ]; then
echo "Error: reflector was not used to generate mirrorlist or mirrorlist location differ from standard"
exit 1
fi
su_needed=true
fi
# If command is empty, command is pacman
@ -87,6 +96,13 @@ case "$command_args" in
if [ "$command" = "pacman" ]; then
su_needed=true
fi
execute_command "${@}"
su_needed=false
command_args="-Qu"
echo
echo "$(execute_command "${@}" | wc -l) packages are available for update"
exit 0
;;
"upgradable")
command_args="-Qu"
@ -137,6 +153,8 @@ case "$command_args" in
echo " remove - pacman -Rs | remove packages & dependencies"
echo " purge - pacman -Rns | remove packages, dependencies & conf"
echo " clean - pacman -Scc | remove all package files & trash"
echo " reflector - mirrorlist | refresh the mirrorlist with reflector (if used)"
echo " (do not use if file location differ from default /etc/pacman.d/mirrorlist)"
echo " config - /etc/pacman.conf | edits pacman configuration"
exit 1
fi