Add (and run) script for updating packages
This commit is contained in:
parent
79d2343d81
commit
ec5c86a7e2
|
@ -23,6 +23,7 @@ btrfs-progs
|
||||||
bzip2
|
bzip2
|
||||||
cantarell-fonts
|
cantarell-fonts
|
||||||
chromium
|
chromium
|
||||||
|
clang
|
||||||
clipit
|
clipit
|
||||||
cmake
|
cmake
|
||||||
cmatrix
|
cmatrix
|
||||||
|
@ -106,6 +107,7 @@ ipw2200-fw
|
||||||
java-openjfx
|
java-openjfx
|
||||||
jfsutils
|
jfsutils
|
||||||
jq
|
jq
|
||||||
|
kdeconnect
|
||||||
kvantum-manjaro
|
kvantum-manjaro
|
||||||
less
|
less
|
||||||
lib32-flex
|
lib32-flex
|
||||||
|
@ -186,6 +188,7 @@ palemoon-bin
|
||||||
pamac-gtk
|
pamac-gtk
|
||||||
patch
|
patch
|
||||||
patchutils
|
patchutils
|
||||||
|
pavucontrol
|
||||||
pciutils
|
pciutils
|
||||||
pcmanfm
|
pcmanfm
|
||||||
pepper-flash
|
pepper-flash
|
||||||
|
@ -199,6 +202,7 @@ powerline-fonts
|
||||||
powertop
|
powertop
|
||||||
procps-ng
|
procps-ng
|
||||||
psmisc
|
psmisc
|
||||||
|
pycharm-community-edition
|
||||||
pygtk
|
pygtk
|
||||||
pyside2
|
pyside2
|
||||||
qt5-3d
|
qt5-3d
|
||||||
|
@ -257,9 +261,11 @@ syslog-ng
|
||||||
systemd-fsck-silent
|
systemd-fsck-silent
|
||||||
systemd-sysvcompat
|
systemd-sysvcompat
|
||||||
tar
|
tar
|
||||||
|
tcpdump
|
||||||
terminus-font
|
terminus-font
|
||||||
texinfo
|
texinfo
|
||||||
tilix
|
tilix
|
||||||
|
tldr
|
||||||
tlp
|
tlp
|
||||||
tmux
|
tmux
|
||||||
tree
|
tree
|
||||||
|
|
|
@ -2,7 +2,7 @@ Name Version Rev Tracking Publisher Not
|
||||||
bitwarden 1.16.6 21 stable bitwarden* -
|
bitwarden 1.16.6 21 stable bitwarden* -
|
||||||
core 16-2.42 7917 stable canonical* core
|
core 16-2.42 7917 stable canonical* core
|
||||||
core18 20191010 1223 stable canonical* base
|
core18 20191010 1223 stable canonical* base
|
||||||
gnome-3-28-1804 3.28.0-10-gaa70833.aa70833 71 stable canonical* -
|
gnome-3-28-1804 3.28.0-14-g9303a49.9303a49 91 stable canonical* -
|
||||||
gtk-common-themes 0.1-25-gcc83164 1353 stable canonical* -
|
gtk-common-themes 0.1-25-gcc83164 1353 stable canonical* -
|
||||||
signal-desktop 1.27.4 189 stable snapcrafters -
|
signal-desktop 1.27.4 189 stable snapcrafters -
|
||||||
spotify 1.1.10.546.ge08ef575-19 36 stable spotify* -
|
spotify 1.1.10.546.ge08ef575-19 36 stable spotify* -
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Store installed packages, excluding foreign
|
||||||
|
pacman -Qqen > pacman/pkglist.txt
|
||||||
|
# Use -Qqem to create the list of AUR and other foreign packages that have been explicitly installed.
|
||||||
|
sudo pacman -Qqem > pacman/foreignpkglist.txt
|
||||||
|
|
||||||
|
snap list > snap/snapacks.txt
|
||||||
|
|
Loading…
Reference in New Issue