Add (and run) script for updating packages
This commit is contained in:
parent
79d2343d81
commit
ec5c86a7e2
|
@ -23,6 +23,7 @@ btrfs-progs
|
|||
bzip2
|
||||
cantarell-fonts
|
||||
chromium
|
||||
clang
|
||||
clipit
|
||||
cmake
|
||||
cmatrix
|
||||
|
@ -106,6 +107,7 @@ ipw2200-fw
|
|||
java-openjfx
|
||||
jfsutils
|
||||
jq
|
||||
kdeconnect
|
||||
kvantum-manjaro
|
||||
less
|
||||
lib32-flex
|
||||
|
@ -186,6 +188,7 @@ palemoon-bin
|
|||
pamac-gtk
|
||||
patch
|
||||
patchutils
|
||||
pavucontrol
|
||||
pciutils
|
||||
pcmanfm
|
||||
pepper-flash
|
||||
|
@ -199,6 +202,7 @@ powerline-fonts
|
|||
powertop
|
||||
procps-ng
|
||||
psmisc
|
||||
pycharm-community-edition
|
||||
pygtk
|
||||
pyside2
|
||||
qt5-3d
|
||||
|
@ -257,9 +261,11 @@ syslog-ng
|
|||
systemd-fsck-silent
|
||||
systemd-sysvcompat
|
||||
tar
|
||||
tcpdump
|
||||
terminus-font
|
||||
texinfo
|
||||
tilix
|
||||
tldr
|
||||
tlp
|
||||
tmux
|
||||
tree
|
||||
|
|
|
@ -2,7 +2,7 @@ Name Version Rev Tracking Publisher Not
|
|||
bitwarden 1.16.6 21 stable bitwarden* -
|
||||
core 16-2.42 7917 stable canonical* core
|
||||
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* -
|
||||
signal-desktop 1.27.4 189 stable snapcrafters -
|
||||
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