From 686037741cb7c8659890f51c6989d843bcf8d59d Mon Sep 17 00:00:00 2001 From: Chris Nutter Date: Thu, 1 Oct 2020 16:56:15 -0700 Subject: [PATCH] updated --- .config/dunst/dunstrc | 46 +++---- .config/i3/config | 2 +- .newsboat/urls | 17 +++ .scripts/' | 128 ------------------ .scripts/init/domain-fix.sh | 3 +- .scripts/mount/blue.sh | 6 - .scripts/mount/purple.sh | 1 - .zshrc | 4 +- README.md | 7 +- packages.txt | 263 ++++++++++++++++++------------------ 10 files changed, 181 insertions(+), 296 deletions(-) delete mode 100644 .scripts/' delete mode 100755 .scripts/mount/blue.sh delete mode 100755 .scripts/mount/purple.sh diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 6cfbd56..5c0daa3 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -1,6 +1,6 @@ [global] frame_width = 1 - frame_color = "#8C867D" + frame_color = "#FC7056" font = Noto Sans 10 @@ -181,18 +181,18 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#010103" - foreground = "#8C867D" + background = "#120512" + foreground = "#FC7056" timeout = 10 [urgency_normal] - background = "#010103" - foreground = "#8C867D" + background = "#120512" + foreground = "#FC7056" timeout = 10 [urgency_critical] - background = "#010103" - foreground = "#8C867D" + background = "#120512" + foreground = "#FC7056" timeout = 0 @@ -252,8 +252,8 @@ # appname = claws-mail # category = email.arrived # urgency = normal -# background = "#010103" -# foreground = "#8C867D" +# background = "#120512" +# foreground = "#FC7056" # #[mute.sh] # appname = mute @@ -263,40 +263,40 @@ #[JDownloader] # appname = JDownloader # category = JD -# background = "#010103" -# foreground = "#8C867D" +# background = "#120512" +# foreground = "#FC7056" # #[newsbeuter] # summary = *Feeds* -# background = "#010103" -# foreground = "#8C867D" +# background = "#120512" +# foreground = "#FC7056" # [irc] appname = weechat timeout = 0 - background = "#010103" - foreground = "#8C867D" + background = "#120512" + foreground = "#FC7056" # [weechat hl] appname = weechat category = weechat.HL - background = "#010103" - foreground = "#8C867D" + background = "#120512" + foreground = "#FC7056" # [weechat pn] appname = weechat category = weechat.PM - background = "#010103" - foreground = "#8C867D" + background = "#120512" + foreground = "#FC7056" # #[CMUS] # appname = CMUS # category = cmus -# background = "#010103" -# foreground = "#8C867D" +# background = "#120512" +# foreground = "#FC7056" # # -# background = "#010103" -# foreground = "#8C867D" +# background = "#120512" +# foreground = "#FC7056" # # vim: ft=cfg diff --git a/.config/i3/config b/.config/i3/config index 1e85d6a..f444634 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -455,7 +455,7 @@ bindsym $mod+Shift+m exec kitty -e sudo umount /mnt/purple /mnt/blue/* bindsym $mod+m exec kitty -e sudo mount-* # --> Allow Local Access to Website -bindsym $mod+Shift+h exec kitty -e sudo sh ~/.scripts/domain-fix.sh +bindsym $mod+Shift+h exec kitty -e sudo sh ~/.scripts/init/domain-fix.sh # --> Time/Date Fix bindsym $mod+Shift+t exec timedatectl set-ntp true && timedatectl set-ntp false diff --git a/.newsboat/urls b/.newsboat/urls index 8f9fbe6..847e75a 100644 --- a/.newsboat/urls +++ b/.newsboat/urls @@ -1,13 +1,28 @@ https://iamchrisama.com/rss.xml https://hnrss.org/frontpage "Articles" https://lukesmith.xyz/rss.xml "Blog" +http://feeds.feedburner.com/elise/simplyrecipes "Food" + ------------------------------------------- + # YouTube # --> LinusTechTips https://www.youtube.com/feeds/videos.xml?channel_id=UCXuqSBlHAE6Xw-yeJA0Tunw "YouTube" "~YouTube: LinusTechTips" # --> Average Linux User https://www.youtube.com/feeds/videos.xml?channel_id=UCZiL6BoryLWxyapUuVYW27g "YouTube" "~YouTube: AverageLinuxUser" +# --> SimpleFlips +https://www.youtube.com/feeds/videos.xml?channel_id=UCiYpKsB66LZsk7s4yhxJqlQ "YouTube" "~YouTube: SimpleFlips" +# --> PhantomStrider +https://www.youtube.com/feeds/videos.xml?channel_id=UCp5p6e83X5blZ93BaW_dvpg "YouTube" "~YouTube: PhantomStrider" +# --> SmallAnt +https://www.youtube.com/feeds/videos.xml?channel_id=UC0VVYtw21rg2cokUystu2Dw "YouTube" "~YouTube: SmallAnt" +# --> Scott the Woz +https://www.youtube.com/feeds/videos.xml?channel_id=UC4rqhyiTs7XyuODcECvuiiQ "YouTube" "~YouTube: Scott the Woz" +# --> 360Chrism +https://www.youtube.com/feeds/videos.xml?channel_id=UCJr2kZImi7_gGkeJ3avS_Wg "YouTube" "~YouTube: 360Chrism" + ------------------------------------------- + # Reddit https://www.reddit.com/r/jailbreak.rss "Reddit" "~/r/jailbreak" https://www.reddit.com/r/unixporn.rss "Reddit" "~/r/unixporn" @@ -18,7 +33,9 @@ https://www.reddit.com/r/cobrakai.rss "Reddit" "~/r/cobrakai" https://www.reddit.com/r/breakingbad.rss "Reddit" "~/r/breakingbad" https://www.reddit.com/r/okbuddychicanery.rss "Reddit" "~/r/okbuddychicanery" + ------------------------------------------- + # RARBG https://rarbg.to/rssdd.php?categories=44 "Torrents" "Movies" "~RARBG: 1080p Movies" https://rarbg.to/rssdd.php?categories=52 "Torrents" "Movies" "~RARBG: 4K HDR Movies" diff --git a/.scripts/' b/.scripts/' deleted file mode 100644 index 7f7a646..0000000 --- a/.scripts/' +++ /dev/null @@ -1,128 +0,0 @@ -# If you come from bash you might have to change your $PATH. -# export PATH=$HOME/bin:/usr/local/bin:$PATH - -# Path to your oh-my-zsh installation. -export ZSH="/home/cdnutter/.oh-my-zsh" - -# Set name of the theme to load --- if set to "random", it will -# load a random theme each time oh-my-zsh is loaded, in which case, -# to know which specific one was loaded, run: echo $RANDOM_THEME -# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes -ZSH_THEME="clean" - -# Set list of themes to pick from when loading at random -# Setting this variable when ZSH_THEME=random will cause zsh to load -# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/ -# If set to an empty array, this variable will have no effect. -# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) - -# Uncomment the following line to use case-sensitive completion. -# CASE_SENSITIVE="true" - -# Uncomment the following line to use hyphen-insensitive completion. -# Case-sensitive completion must be off. _ and - will be interchangeable. -# HYPHEN_INSENSITIVE="true" - -# Uncomment the following line to disable bi-weekly auto-update checks. -# DISABLE_AUTO_UPDATE="true" - -# Uncomment the following line to automatically update without prompting. -# DISABLE_UPDATE_PROMPT="true" - -# Uncomment the following line to change how often to auto-update (in days). -# export UPDATE_ZSH_DAYS=13 - -# Uncomment the following line if pasting URLs and other text is messed up. -# DISABLE_MAGIC_FUNCTIONS=true - -# Uncomment the following line to disable colors in ls. -# DISABLE_LS_COLORS="true" - -# Uncomment the following line to disable auto-setting terminal title. -# DISABLE_AUTO_TITLE="true" - -# Uncomment the following line to enable command auto-correction. -# ENABLE_CORRECTION="true" - -# Uncomment the following line to display red dots whilst waiting for completion. -# COMPLETION_WAITING_DOTS="true" - -# Uncomment the following line if you want to disable marking untracked files -# under VCS as dirty. This makes repository status check for large repositories -# much, much faster. -# DISABLE_UNTRACKED_FILES_DIRTY="true" - -# Uncomment the following line if you want to change the command execution time -# stamp shown in the history command output. -# You can set one of the optional three formats: -# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" -# or set a custom format using the strftime function format specifications, -# see 'man strftime' for details. -# HIST_STAMPS="mm/dd/yyyy" - -# Would you like to use another custom folder than $ZSH/custom? -# ZSH_CUSTOM=/path/to/new-custom-folder - -# Which plugins would you like to load? -# Standard plugins can be found in ~/.oh-my-zsh/plugins/* -# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ -# Example format: plugins=(rails git textmate ruby lighthouse) -# Add wisely, as too many plugins slow down shell startup. -plugins=(git) - -source $ZSH/oh-my-zsh.sh - -# User configuration - -# export MANPATH="/usr/local/man:$MANPATH" - -# You may need to manually set your language environment -# export LANG=en_US.UTF-8 - -# Preferred editor for local and remote sessions -# if [[ -n $SSH_CONNECTION ]]; then -# export EDITOR='vim' -# else -# export EDITOR='mvim' -# fi - -# Compilation flags -# export ARCHFLAGS="-arch x86_64" - -# Set personal aliases, overriding those provided by oh-my-zsh libs, -# plugins, and themes. Aliases can be placed here, though oh-my-zsh -# users are encouraged to define aliases within the ZSH_CUSTOM folder. -# For a full list of active aliases, run `alias`. -# -# Example aliases -# alias zshconfig="mate ~/.zshrc" -# alias ohmyzsh="mate ~/.oh-my-zsh" - -######################################################################### - -## Alias - -alias icat="kitty +kitten icat" -alias please="sudo" - -alias sl="sh ~/.scripts/fun/loop-sl.sh" -alias git-out="sh ~/.scripts/git/out.sh" -alias git-in="sh ~/.scripts/git/in.sh" - -alias mount-purple="sh ~/.scripts/mount/purple.sh" -alias mount-blue="sh ~/.scripts/mount/blue.sh" -alias mount-\*="sh ~/.scripts/mount/blue.sh && sudo ~/.scripts/mount/purple.sh" - -alias neo="sh ~/.scripts/fun/neofetch.sh" -alias for="sh ~/.scripts/fun/fortune.sh" - -## wal - -(cat ~/.cache/wal/sequences &) -cat ~/.cache/wal/sequences - -## Zathura-Pywal -export PATH="/home/cdnutter/.local/bin:$PATH" - -## PATH -PATH=$PATH$(find "$HOME/.scripts" -type d -not -path '/.' -printf ":%p") diff --git a/.scripts/init/domain-fix.sh b/.scripts/init/domain-fix.sh index a2f839f..2400f62 100755 --- a/.scripts/init/domain-fix.sh +++ b/.scripts/init/domain-fix.sh @@ -8,7 +8,8 @@ echo "Make sure you are 100% the connection you have is proper or else it'll ass echo "Ctrl-C or Ctrl-D to cancel now. Otherwise Press any key to continue..." read -p "" -if wget http://ipecho.net/plain -O - -q | grep -A 2 --quiet -oh "107.221." # Add more to the public to make it more accurate however this should be fine. +#if wget http://ipecho.net/plain -O - -q | grep -A 2 --quiet -oh "107.221." # Add more to the public to make it more accurate however this should be fine. +if curl ipinfo.io/ip | grep -A 2 --quiet -oh "107.221." # Switched ip websites, this one should work the same just curl is cleaner. then sed '8 s/#192.168.1.66/192.168.1.66/g' /etc/hosts > /tmp/hosts mv /tmp/hosts /etc/hosts diff --git a/.scripts/mount/blue.sh b/.scripts/mount/blue.sh deleted file mode 100755 index c7c140f..0000000 --- a/.scripts/mount/blue.sh +++ /dev/null @@ -1,6 +0,0 @@ -sudo mount.cifs -o credentials=/home/cdnutter/.files/secret/win-credentials-blue "//192.168.1.66/Blue's Internal" /mnt/blue/internal -sudo mount.cifs -o credentials=/home/cdnutter/.files/secret/win-credentials-blue "//192.168.1.66/Blue's Movies" /mnt/blue/movies -sudo mount.cifs -o credentials=/home/cdnutter/.files/secret/win-credentials-blue "//192.168.1.66/Blue's TV Shows" /mnt/blue/tv_shows -sudo mount.cifs -o credentials=/home/cdnutter/.files/secret/win-credentials-blue "//192.168.1.66/Blue's 4K" /mnt/blue/4k -sudo mount.cifs -o credentials=/home/cdnutter/.files/secret/win-credentials-blue "//192.168.1.66/Blue's Anime" /mnt/blue/other - diff --git a/.scripts/mount/purple.sh b/.scripts/mount/purple.sh deleted file mode 100755 index fe2f56c..0000000 --- a/.scripts/mount/purple.sh +++ /dev/null @@ -1 +0,0 @@ -sudo mount -t cifs -o credentials=/home/cdnutter/.files/secret/win-credentials-purple //192.168.1.176/data /mnt/purple/ diff --git a/.zshrc b/.zshrc index e87ec19..cef6e29 100644 --- a/.zshrc +++ b/.zshrc @@ -113,8 +113,8 @@ alias mount-purple="sh ~/.scripts/mount/purple.sh" alias mount-blue="sh ~/.scripts/mount/blue.sh" alias mount-\*="sh ~/.scripts/mount/blue.sh && sudo ~/.scripts/mount/purple.sh" -alias neo="sh ~/.scripts/clean/neofetch.sh" -alias for="sh ~/.scripts/clean/fortune.sh" +alias neo="sh ~/.scripts/fun/neofetch.sh" +alias for="sh ~/.scripts/fun/fortune.sh" ## wal diff --git a/README.md b/README.md index 40b63ef..d2c9c71 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -# dotfiles -Unified dotfiles of all my Linux setups +# Gray-Arch + +## Root Modifications +`/etc/fstab` with CIFS mounting +`/etc/hosts` with domain redirect on LAN (with use with `~/.scripts/init/domain-fix.sh` script) diff --git a/packages.txt b/packages.txt index fcb6b54..e654043 100644 --- a/packages.txt +++ b/packages.txt @@ -13,7 +13,7 @@ alsa-plugins 1:1.2.2-2 alsa-topology-conf 1.2.3-1 alsa-ucm-conf 1.2.3-2 alsa-utils 1.2.3-2 -amd-ucode 20200901.r1699.d5f9eea-1 +amd-ucode 20200923.r1716.afbfb5f-1 android-tools 30.0.3-1 android-udev 20200613-1 aom 2.0.0-1 @@ -40,32 +40,32 @@ bashrc-manjaro 5.0.018-1 bc 1.07.1-4 binutils 2.35-2 bison 3.6.4-1 -bluez-libs 5.54-2 -bmenu 0.13-1 +bluez-libs 5.55-1 +bmenu 0.14-1 boost-libs 1.72.0-2 botsay 1.2.2-1 -brotli 1.0.7-3 +brotli 1.0.9-2 btrfs-progs 5.7-1 bubblewrap 0.4.1-1 buddhasay 0.4.0-1 bzip2 1.0.8-3 c-ares 1.16.1-2 ca-certificates 20181109-4 -ca-certificates-mozilla 3.56-1 +ca-certificates-mozilla 3.57-1 ca-certificates-utils 20181109-4 cairo 1.17.2+25+gaee96d175-1 cairomm 1.12.2-4 cantarell-fonts 1:0.201-1 catsay v0.2.0.8.r11.g6abd981-1 -cbindgen 0.14.4-1 +cbindgen 0.14.6-1 cdparanoia 10.2-8 chromaprint 1.5.0-2 chromedriver 85.0.4183.87-1 -cifs-utils 6.10-1 +cifs-utils 6.11-1 clang 10.0.1-1 clipit 1:1.4.3-2 -cmake 3.18.2-1 -cmus 2.8.0-4 +cmake 3.18.3-1 +cmus 2.8.0-5 colord 1.4.4+9+g1ce26da-2 colorpicker 1.0.f5d441a-2 compiler-rt 10.0.1-1 @@ -79,14 +79,14 @@ cpupower 5.7-1 cracklib 2.9.7-2 crda 4.14-3 cronie 1.5.5-1 -cryptsetup 2.3.3-1 +cryptsetup 2.3.4-1 ctemplate 2.4-1 curl 7.72.0-2 dav1d 0.7.1-1 db 5.3.28-5 dbus 1.12.20-1 dbus-glib 0.110-2 -dconf 0.36.0-1 +dconf 0.38.0-1 desktop-file-utils 0.26-1 device-mapper 2.02.187-3 dfc 3.1.1-3 @@ -96,7 +96,7 @@ diffutils 3.7-3 ding-libs 0.6.1-3 discord 0.0.12-0 djvulibre 3.5.27-6 -dmenu-manjaro 4.9-5 +dmenu-manjaro 5.0-1 dmidecode 3.2-2 dmraid 1.0.0.rc16.3-12 dnsmasq 2.82-2 @@ -105,12 +105,12 @@ dosfstools 4.1-3 double-conversion 3.1.5-2 dunst 1.5.0-1.0 dunstify 1.5.0-1.0 -e2fsprogs 1.45.6-2 +e2fsprogs 1.45.6-3 ecryptfs-utils 111-4 efibootmgr 17-2 efivar 37-4 -elfutils 0.180-1 -enchant 2.2.8-3 +elfutils 0.181-1 +enchant 2.2.10-1 epdfview 0.1.8-11 exfat-utils 1.3.0-2 exiv2 0.27.3-1 @@ -124,12 +124,12 @@ fftw 3.3.8-3 figlet 2.2.5-4 figlet-fonts 1.0-3 file 5.39-1 -filesystem 2020.05-1 +filesystem 2020.09-2 fim 0.6-3 findutils 4.7.0-2 flac 1.3.3-2 flex 2.6.4-3 -fluidsynth 2.1.4-1 +fluidsynth 2.1.5-2 fontconfig 2:2.13.91+48+gfcb0420-2 fortune-mod 2.12.0-1 fortune-mod-issa-haiku 1.1-5 @@ -159,8 +159,8 @@ giflib 5.2.1-2 girara 0.3.5-1 git 2.28.0-1 glew 2.2.0-2 -glib-networking 2.64.3-2 -glib2 2.64.5-1 +glib-networking 2.66.0-1 +glib2 2.66.0-1 glibc 2.32-4 glibmm 2.64.2-1 glslang 8.13.3743-1 @@ -170,11 +170,11 @@ gnome-keyring 1:3.36.0-1 gnupg 2.2.23-1 gnutls 3.6.15-1 go 2:1.15.2-1 -gobject-introspection-runtime 1.64.1-2 +gobject-introspection-runtime 1.66.0-1 gotop 4.0.0-1 gparted 1.1.0-1 gpgme 1.14.0-1 -gpm 1.20.7.r27.g1fd1941-2 +gpm 1.20.7.r38.ge82d1a6-2 gptfdisk 1.0.5-1 graphene 1.10.2-1 graphite 1:1.3.14-1 @@ -184,14 +184,14 @@ grub 2.04-11.1 grub-customizer 5.1.0-2 grub-theme-manjaro-dev 18.0-3 gsasl 1.8.1-2 -gsettings-desktop-schemas 3.36.1-1 +gsettings-desktop-schemas 3.38.0-1 gsfonts 20180524-3 gsl 2.6-2 gsm 1.0.19-1 gssproxy 0.8.3-1 -gst-plugins-base 1.16.2-2 -gst-plugins-base-libs 1.16.2-2 -gstreamer 1.16.2-2 +gst-plugins-base 1.18.0-1 +gst-plugins-base-libs 1.18.0-1 +gstreamer 1.18.0-1 gtk-update-icon-cache 1:3.24.23-1 gtk2 2.24.32-2 gtk3 1:3.24.23-1 @@ -205,7 +205,7 @@ gvfs-afc 1.44.1-4 gvfs-gphoto2 1.44.1-4 gvfs-mtp 1.44.1-4 gvfs-smb 1.44.1-4 -gvim 8.2.1634-1 +gvim 8.2.1704-1 gzip 1.10-3 hardcode-fixer 1:r543.0321910-1 harfbuzz 2.7.2-1 @@ -213,8 +213,8 @@ harfbuzz-icu 2.7.2-1 hdparm 9.58-3 hicolor-icon-theme 0.17-2 hidapi 0.9.0-2 -highlight 3.57-2 -htop 3.0.1-1 +highlight 3.58-1 +htop 3.0.2-1 hwids 20200813.1-1 hwinfo 21.70-2 hwloc 2.2.0-1 @@ -229,14 +229,14 @@ i3lock 2.12-2 i3status-manjaro 2.13-3 iana-etc 20200905-1 icu 67.1-1 -imagemagick 7.0.10.29-1 +imagemagick 7.0.10.30-1 imake 1.0.8-2 imlib2 1.7.0-1 inetutils 1.9.4-8 inxi 3.1.05+2-1 iproute2 5.8.0-1 iptables 1:1.8.5-2 -iputils 20190709-3 +iputils 20200821-1 irssi 1.2.2-3 iso-codes 4.5.0-1 isync 1.3.2-1 @@ -244,22 +244,23 @@ iw 5.8-1 jack 0.125.0-9 jansson 2.13.1-1 jasper 2.0.19-1 -jbig2dec 0.18-1 +jbig2dec 0.19-1 jfsutils 1.1.15-7 js60 60.9.0-2 +js68 68.12.0-1 json-c 0.15-1 -json-glib 1.4.4-2 +json-glib 1.6.0-1 jsoncpp 1.9.3-1 kbd 2.3.0-2 -kcompletion 5.73.0-1 -kconfig 5.73.0-1 -kcoreaddons 5.73.0-1 -kcrash 5.73.0-1 +kcompletion 5.74.0-1 +kconfig 5.74.0-1 +kcoreaddons 5.74.0-1 +kcrash 5.74.0-1 keyutils 1.6.3-1 -kguiaddons 5.73.0-1 -ki18n 5.73.0-1 -kitemmodels 5.73.0-1 -kitemviews 5.73.0-1 +kguiaddons 5.74.0-1 +ki18n 5.74.0-1 +kitemmodels 5.74.0-1 +kitemviews 5.74.0-1 kitty 0.18.3-1 kitty-terminfo 0.18.3-1 kmod 27-2 @@ -267,8 +268,8 @@ krb5 1.18.2-1 krita 4.3.0-2 kvantum-manjaro 0.13.5-1 kvantum-qt5 0.16.1-1 -kwidgetsaddons 5.73.0-1 -kwindowsystem 5.73.0-1 +kwidgetsaddons 5.74.0-1 +kwindowsystem 5.74.0-1 l-smash 2.14.5-2 lame 3.100-3 lcms2 2.11-2 @@ -283,7 +284,7 @@ lib32-expat 2.2.9-1 lib32-flex 2.6.4-2 lib32-gcc-libs 10.2.0-2 lib32-glew 2.2.0-1 -lib32-glibc 2.32-3 +lib32-glibc 2.32-4 lib32-glu 9.0.1-1 lib32-icu 67.1-1 lib32-libdrm 2.4.102-1 @@ -314,14 +315,14 @@ lib32-libxxf86vm 1.1.4-2 lib32-llvm-libs 10.0.1-1 lib32-lm_sensors 3.6.0-1 lib32-lz4 1.9.2-1 -lib32-mesa 20.1.7-1 +lib32-mesa 20.1.8-1 lib32-mesa-demos 8.4.0-2 -lib32-mesa-vdpau 20.1.7-1 +lib32-mesa-vdpau 20.1.8-1 lib32-ncurses 6.2-1 lib32-readline 8.0.0-1 lib32-util-linux 2.36-1 -lib32-vulkan-intel 20.1.7-1 -lib32-vulkan-radeon 20.1.7-1 +lib32-vulkan-intel 20.1.8-1 +lib32-vulkan-radeon 20.1.8-1 lib32-wayland 1.18.0-2 lib32-xz 5.2.5-1 lib32-zlib 1.2.11-2 @@ -360,7 +361,7 @@ libdrm 2.4.102-1 libdvdnav 6.1.0-2 libdvdread 6.1.1-1 libedit 20191231_3.1-2 -libelf 0.180-1 +libelf 0.181-1 libepoxy 1.5.4-2 libev 4.33-1 libevdev 1.9.1-1 @@ -377,7 +378,7 @@ libgme 0.6.3-1 libgpg-error 1.39-1 libgphoto2 2.5.25-1 libgssglue 0.4-4 -libgudev 233-2 +libgudev 234-1 libgusb 0.3.5-1 libibus 1.5.22+8+gf591381e-1 libice 1.0.10-3 @@ -394,7 +395,7 @@ libinstpatch 1.1.5-1 libjpeg-turbo 2.0.5-2 libkeybinder3 0.3.2-3 libksba 1.4.0-2 -libldap 2.4.50-2 +libldap 2.4.53-1 liblqr 0.4.2-3 libmad 0.15.1b-9 libmbim 1.24.2-1 @@ -458,7 +459,7 @@ libsndfile 1.0.28-3 libsodium 1.0.18-2 libsoup 2.70.0-1 libsoxr 0.1.3-2 -libssh 0.9.4-2 +libssh 0.9.5-1 libssh2 1.9.0-2 libstemmer 0+713-2 libsynctex 2020.54586-5 @@ -475,10 +476,9 @@ libupnp 1.6.25-2 libusb 1.0.23-2 libusbmuxd 2.0.2-1 libutempter 1.2.1-1 -libutil-linux 2.36-3 -libuv 1.39.0-1 -libva 2.8.0-1 -libva-mesa-driver 20.1.7-1 +libuv 1.40.0-1 +libva 2.9.0-1 +libva-mesa-driver 20.1.8-1 libva-vdpau-driver 0.7.4-4 libvdpau 1.4-1 libvisual 0.4.0-8 @@ -486,7 +486,7 @@ libvorbis 1.3.7-2 libvpx 1.9.0-1 libwacom 1.5-1 libwebp 1.1.0-1 -libwpe 1.6.0-1 +libwpe 1.8.0-1 libx11 1.6.12-1 libx86emu 3.1-1 libxau 1.0.9-3 @@ -506,13 +506,13 @@ libxfont2 2.0.4-3 libxft 2.3.3-2 libxi 1.7.10-3 libxinerama 1.1.4-3 -libxkbcommon 1.0.0-1 -libxkbcommon-x11 1.0.0-1 +libxkbcommon 1.0.1-1 +libxkbcommon-x11 1.0.1-1 libxkbfile 1.1.0-2 libxklavier 5.4-3 libxml2 2.9.10-2 libxmu 1.1.3-2 -libxnvctrl 450.66-1 +libxnvctrl 455.23.04-1 libxpm 3.5.13-2 libxrandr 1.5.2-3 libxrender 0.9.10-4 @@ -531,13 +531,13 @@ licenses 20200427-1 lightdm 1:1.30.0-4 lightdm-slick-greeter 1.3.2-1 linux-api-headers 5.8-1 -linux-firmware 20200901.r1699.d5f9eea-1 -linux-latest 5.8-1 +linux-firmware 20200923.r1716.afbfb5f-1 +linux-latest 5.8-2 linux57 5.7.19-2 -linux58 5.8.6-1 -lld 10.0.1-1 -llvm 10.0.1-2 -llvm-libs 10.0.1-2 +linux58 5.8.11-1 +lld 10.0.1-2 +llvm 10.0.1-3 +llvm-libs 10.0.1-3 lm_sensors 3.6.0-2 lmdb 0.9.26-1 logrotate 3.17.0-1 @@ -567,19 +567,19 @@ manjaro-hotfixes 2018.08-6 manjaro-i3-settings 20200919-1 manjaro-keyring 20200603-1 manjaro-ranger-settings 20190513-2 -manjaro-release 20.1-1 +manjaro-release 20.1.1-1 manjaro-system 20200906-1 -manjaro-zsh-config 0.12-1 +manjaro-zsh-config 0.15-1 markdown_previewer 0.r6.64ad4d7-1 md4c 0.4.5-1 mdadm 4.1-2 mediainfo 20.08-1 memtest86+ 5.01-4 menu-cache 1.1.0-2 -mesa 20.1.7-1 +mesa 20.1.8-1 mesa-demos 8.4.0-4 -mesa-vdpau 20.1.7-1 -mhwd 0.6.5-1 +mesa-vdpau 20.1.8-1 +mhwd 0.6.5-2 mhwd-amdgpu 19.1.0-1 mhwd-ati 19.1.0-1 mhwd-db 0.6.4-12 @@ -591,7 +591,7 @@ mhwd-nvidia-435xx 435.21-1.0 mhwd-nvidia-440xx 440.100-1 mhwd-nvidia-450xx 450.66-1 minted 2.5-3 -mkinitcpio 27-3 +mkinitcpio 28-1.0 mkinitcpio-busybox 1.31.1-2 mkinitcpio-openswap 0.1.0-3 mlocate 0.26.git.20170220-5 @@ -600,16 +600,16 @@ moc 1:2.5.2-3 modemmanager 1.14.2-1 morc_menu 1.0-2 mousepad 0.4.2-3 -mpd 0.21.25-3 +mpd 0.21.26-1 mpfr 4.1.0-1 mpg123 1.26.3-2 mpv 1:0.32.0-4 msmtp 1.8.12-1 mtdev 1.1.6-1 mujs 1.0.8-1 -mupdf 1.17.0-2 +mupdf 1.17.0-3 nano 5.2-1 -nasm 2.15.04-1 +nasm 2.15.05-1 ncdu 1.15.1-2 ncmpcpp 0.8.2-12 ncurses 6.2-1 @@ -625,18 +625,18 @@ networkmanager-openconnect 1.2.6-2 networkmanager-openvpn 1.8.12-1 networkmanager-pptp 1.2.9dev+10+gb41b0d0-2 networkmanager-vpnc 1.2.7dev+20+gdca3aea-2 -newsboat 2.20.1-2 +newsboat 2.21-1 nfs-utils 2.5.1-1 nfsidmap 2.5.1-1 nitrogen 1.6.1-3 nm-connection-editor 1.18.0-1 node-gyp 7.1.0-1 -nodejs 14.10.0-1 +nodejs 14.12.0-1 noto-fonts 20190926-4 npm 6.14.8-1 npth 1.6-2 -nspr 4.28-1 -nss 3.56-1 +nspr 4.29-1 +nss 3.57-1 nss-mdns 0.14.1-3 ntfs-3g 2017.3.23-5 ntp 4.2.8.p15-1 @@ -646,15 +646,15 @@ openconnect 1:8.10-1 opencore-amr 0.1.5-4 openexr 2.5.3-1 openjpeg2 2.3.1-2 -openmpi 4.0.4-1 +openmpi 4.0.5-1 openoffice 4.1.7-1 openresolv 3.11.0-1 openssh 8.3p1-4 -openssl 1.1.1.g-2 +openssl 1.1.1.h-1 openvpn 2.4.9-2 -opera-ffmpeg-codecs 84.0.4147.135-1 +opera-ffmpeg-codecs 85.0.4183.102-1 opus 1.3.1-2 -orc 0.4.31-2 +orc 0.4.32-1 os-prober 1.77-1 p11-kit 0.23.21-1 p7zip 16.02-6 @@ -664,11 +664,11 @@ pacman-mirrors 4.16.4-1 pacui 1.14-1 palemoon-bin 28.13.0-1 pam 1.4.0-3 -pamac-cli 9.5.10-1 -pamac-common 9.5.10-1 -pamac-gtk 9.5.10-1 +pamac-cli 9.5.10-2 +pamac-common 9.5.10-2 +pamac-gtk 9.5.10-2 pambase 20200721.1-2 -pango 1:1.46.1-1 +pango 1:1.46.2-1 pangomm 2.42.1-2 papirus-icon-theme 20200901-1 papirus-maia-icon-theme 20200201-1 @@ -682,7 +682,7 @@ pcre 8.44-1 pcre2 10.35-1 pcsclite 1.9.0-1 peek 1.5.1-3 -perl 5.32.0-1 +perl 5.32.0-3 perl-clone 0.45-2 perl-encode-locale 1.05-7 perl-error 0.17029-2 @@ -691,17 +691,17 @@ perl-file-desktopentry 0.22-7 perl-file-listing 6.04-8 perl-file-mimeinfo 0.29-4 perl-file-which 1.23-4 -perl-html-parser 3.73-1 +perl-html-parser 3.74-1 perl-html-tagset 3.20-10 perl-http-cookies 6.08-3 perl-http-daemon 6.06-2 perl-http-date 6.05-3 -perl-http-message 6.25-1 +perl-http-message 6.26-1 perl-http-negotiate 6.01-8 perl-image-exiftool 12.00-2 perl-io-html 1.001-7 perl-ipc-system-simple 1.30-2 -perl-libwww 6.47-1 +perl-libwww 6.49-1 perl-lwp-mediatypes 6.02-8 perl-mailtools 2.21-4 perl-net-http 6.19-4 @@ -712,14 +712,14 @@ perl-www-robotrules 6.02-8 perl-xml-parser 2.46-2 perl-xml-writer 0.625-6 php 7.4.10-1 -picom 8-5 +picom 8.1-1 pinentry 1.1.0-5 pipes.sh 1.3.0-1 pixman 0.40.0-1 -pkcs11-helper 1.26.0-1 +pkcs11-helper 1.26.0-2 pkgconf 1.7.3-1 pkgfile 21-2 -polkit 0.116-5.1 +polkit 0.117-1 polkit-gnome 0.105-5 polybar 3.4.3-3 poppler 20.09.0-1 @@ -748,7 +748,7 @@ python-ordered-set 4.0.2-1 python-packaging 20.4-1 python-pillow 7.2.0-1 python-psutil 5.7.2-1 -python-pygments 2.6.1-3 +python-pygments 2.7.1-1 python-pyparsing 2.4.7-1 python-pywal 3.3.0-2 python-requests 2.24.0-1 @@ -765,24 +765,22 @@ python2-pyparsing 2.4.7-1 python2-setuptools 2:44.1.1-1 python2-six 1.15.0-1 qmltermwidget 0.2.0-1 -qt5-base 5.15.0-5 -qt5-declarative 5.15.0-2 -qt5-graphicaleffects 5.15.0-1 -qt5-multimedia 5.15.0-1 -qt5-quickcontrols 5.15.0-1 -qt5-styleplugins 5.0.0.20170311-23 -qt5-svg 5.15.0-1 -qt5-x11extras 5.15.0-1 +qt5-base 5.15.1-1 +qt5-declarative 5.15.1-1 +qt5-graphicaleffects 5.15.1-1 +qt5-multimedia 5.15.1-1 +qt5-quickcontrols 5.15.1-1 +qt5-styleplugins 5.0.0.20170311-24 +qt5-svg 5.15.1-1 +qt5-x11extras 5.15.1-1 qt5ct 1.1-1 quazip 0.9.1-1 ranger 1.9.3.4.gd8c363c9-1 -rav1e 0.3.3-1 +rav1e 0.3.4-1 rdesktop 1.9.0-2 readline 8.0.004-1 recode 3.7.7-1 reiserfsprogs 3.6.27-3 -remmina 1:1.4.8-1 -remmina-plugin-rdesktop 1.3.0.0-1 rest 0.8.1-3 rhash 1.4.0-1 rofi 1.6.0.r9.g6ba878e4-1 @@ -790,16 +788,16 @@ rpcbind 1.2.5-3 rsync 3.2.3-1 rtkit 0.13-1 rubber 1.5.1-2 -rubberband 1.8.2-4 +rubberband 1.9-1 ruby 2.7.1-3 ruby-diff-lcs 1.4.4-1 -ruby-irb 1.2.4-1 +ruby-irb 1.2.7-1 ruby-manpages 0.6.1-3 ruby-optimist 3.0.0-2 -ruby-paint 2.1.0-2 +ruby-paint 2.2.0-1 ruby-rainbow 3.0.0-5 ruby-rdoc 6.2.0-2 -ruby-reline 0.1.4-1 +ruby-reline 0.1.5-1 ruby-rspec 3.8.0-3 ruby-rspec-core 3.8.0-3 ruby-rspec-expectations 3.8.1-3 @@ -826,7 +824,7 @@ shadow 4.8.1-4 shared-mime-info 2.0+1+g6bf9e4f-2 sl 5.02-6 slang 2.3.2-2 -smbclient 4.12.3-2 +smbclient 4.12.6-1 sound-theme-freedesktop 0.8-4 source-highlight 3.1.9-2 spectre-meltdown-checker 0.43-1 @@ -836,18 +834,18 @@ speexdsp 1.2.0-2 spirv-tools 2020.4-1 sqlite 3.33.0-2 squashfs-tools 4.4-2 -srt 1.4.1-2 +srt 1.4.2-1 startup-notification 0.12-7 stfl 0.24-5 stoken 0.92-4 -sudo 1.9.2-1 +sudo 1.9.3.p1-1 synergy 1.10.3-1 sysfsutils 2.1.0-11 syslog-ng 3.29.1-1 -systemd 246.4-1 +systemd 246.6-1 systemd-fsck-silent 239-1 -systemd-libs 246.4-1 -systemd-sysvcompat 246.4-1 +systemd-libs 246.6-1 +systemd-sysvcompat 246.6-1 t1lib 5.1.2-8 taglib 1.11.1-4 talloc 2.3.1-3 @@ -880,7 +878,8 @@ upower 0.99.11-3 urxvt-perls 2.3-1 usbmuxd 1.1.1-1 usbutils 012-2 -util-linux 2.36-3 +util-linux 2.36-4 +util-linux-libs 2.36-4 v4l-utils 1.20.0-1 v86d 0.1.10-5.1 vamp-plugin-sdk 2.10.0-1 @@ -888,23 +887,23 @@ vi 1:070224-4 vid.stab 1.1-3 viewnior 1.7-3 vim-live-latex-preview 0.9-1 -vim-runtime 8.2.1634-1 +vim-runtime 8.2.1704-1 vim-surround 2.1-4 vivaldi 3.2.1967.47-1 vmaf 1.5.3-1 volume_key 0.3.12-3 volumeicon 0.5.1-5 vpnc 1:0.5.3.r468.r81-1 -vte-common 0.60.3-1 -vte3 0.60.3-1 -vulkan-icd-loader 1.2.151-1 -vulkan-intel 20.1.7-1 -vulkan-radeon 20.1.7-1 +vte-common 0.62.0-1 +vte3 0.62.0-1 +vulkan-icd-loader 1.2.153-2 +vulkan-intel 20.1.8-1 +vulkan-radeon 20.1.8-1 w3m 0.5.3.git20200507-2 wavpack 5.3.0-1 wayland 1.18.0-2 wayland-protocols 1.20-1 -webkit2gtk 2.28.4-1 +webkit2gtk 2.30.1-1 webrtc-audio-processing 0.3.1-2 wget 1.20.3-3 which 2.21-5 @@ -916,7 +915,7 @@ wmctrl 1.07-6 wmutils 1:1.4-1 woff2 1.0.2-3 wpa_supplicant 2:2.9-7 -wpebackend-fdo 1.6.1-1 +wpebackend-fdo 1.8.0-1 x264 3:0.160.r3011.cde9a93-1 x265 3.4-1 xautolock 2.2-6 @@ -945,7 +944,7 @@ xf86-video-intel 1:2.99.917+908+g7181c5a4-1 xf86-video-nouveau 1.0.16-2 xfce4-power-manager 1.6.6-1 xfconf 4.14.3-1 -xfsprogs 5.7.0-3 +xfsprogs 5.8.0-1 xkeyboard-config 2.30-2 xorg-bdftopcf 1.1-2 xorg-font-util 1.3.2-2 @@ -955,9 +954,9 @@ xorg-fonts-encodings 1.0.5-2 xorg-fonts-misc 1.0.3-10 xorg-luit 1.1.1-4 xorg-mkfontscale 1.2.1-2 -xorg-server 1.20.8-4 -xorg-server-common 1.20.8-4 -xorg-server-xvfb 1.20.8-4 +xorg-server 1.20.9-2 +xorg-server-common 1.20.9-2 +xorg-server-xvfb 1.20.9-2 xorg-setxkbmap 1.3.2-2 xorg-twm 1.0.11-1 xorg-xauth 1.1-2 @@ -974,21 +973,21 @@ xorg-xrdb 1.2.0-2 xorg-xset 1.2.4-2 xorgproto 2020.1-1 xsel 1.2.0.20190821-1 -xterm 359-1 +xterm 360-1 xvidcore 1.3.7-2 xxhash 0.8.0-1 xz 5.2.5-1 yajl 2.1.0-3 yaourt 1.9-1 yasm 1.3.0-4 -youtube-dl 2020.09.06-1 +youtube-dl 2020.09.20-1 zathura 0.4.6-1 zathura-cb 0.1.8-2 zathura-djvu 0.2.9-1 -zathura-pdf-mupdf 0.3.5-3 +zathura-pdf-mupdf 0.3.6-1 zenity 3.32.0+50+gc229637-1 zensu 0.1-1 -zeromq 4.3.2-3 +zeromq 4.3.3-2 zip 3.0-9 zita-alsa-pcmi 0.3.2-3 zita-resampler 1.6.2-3