diff options
author | cbreton <corentin.breton@fullsave.com> | 2019-12-18 11:51:36 +0100 |
---|---|---|
committer | cbreton <corentin.breton@fullsave.com> | 2019-12-18 11:58:58 +0100 |
commit | ecc25dcecac342a7b39376ba969f1c5ea25a8aaa (patch) | |
tree | 0ecf1c44b61b08bd2ba35bd9a01e78953ed2bf96 /dotfiles/cheat/pacman | |
parent | 649f04f75130b85a2c8efd10b9edee41c26d3f46 (diff) | |
download | dotfiles_dotdrop-ecc25dcecac342a7b39376ba969f1c5ea25a8aaa.tar.xz dotfiles_dotdrop-ecc25dcecac342a7b39376ba969f1c5ea25a8aaa.zip |
Add more cheats
Diffstat (limited to 'dotfiles/cheat/pacman')
-rw-r--r-- | dotfiles/cheat/pacman | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dotfiles/cheat/pacman b/dotfiles/cheat/pacman index 737bb64..6a00642 100644 --- a/dotfiles/cheat/pacman +++ b/dotfiles/cheat/pacman @@ -36,7 +36,6 @@ pacman -Qdt # overwrite package pacman --overwrite - # You can't directly install packages from the Arch User Database (AUR) with pacman. # You need yaourt to perform that. But considering yaourt itself is in the AUR, here is how to build a package from its tarball. # Installing a package from AUR is a relatively simple process: @@ -52,3 +51,9 @@ cd "$pkgname" makepkg -s # Install sudo pacman -U <package file (.pkg.tar.xz)> + +# Reinstall a package installed via pip with pacman +sudo pip uninstall --yes <package>; sudo pacman -S --noconfirm python-<package> + +# exemple via pikaur pkg +sudo pip uninstall --yes i3pystatus; pikaur -S i3pystatus-git --noconfirm |