Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
changelog
**** **** **** ****

v3.9.2
- Fix Detectpkgs to display correct number for Debian/Ubuntu
- Added SparkyLinux to Detectpkgs

v3.9.1
- Fix GTK3 detection issues
- LXQt proper detection and theme detection
Expand Down
6 changes: 3 additions & 3 deletions screenfetch-dev
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#LC_ALL=C


scriptVersion="3.9.1"
scriptVersion="3.9.2"

######################
# Settings for fetcher
Expand Down Expand Up @@ -1429,8 +1429,8 @@ detectpkgs () {
pkgs=$(pacman-g2 -Q | wc -l) ;;
'Debian'|'Ubuntu'|'Mint'|'Fuduntu'|'KDE neon'|'Devuan'|'OS Elbrus'|'Raspbian'|'Quirinux'|'LMDE'|'CrunchBang'|'Peppermint'| \
'LinuxDeepin'|'Deepin'|'Kali Linux'|'Trisquel'|'elementary OS'|'gNewSense'|'BunsenLabs'|'SteamOS'|'Parrot Security'| \
'GrombyangOS'|'DesaOS'|'Zorin OS'|'Proxmox VE'|'PureOS'|'DraugerOS')
pkgs=$(dpkg -l | grep -c '^i') ;;
'GrombyangOS'|'DesaOS'|'Zorin OS'|'Proxmox VE'|'PureOS'|'DraugerOS'|'SparkyLinux')
pkgs=$(dpkg -l | grep -cE '^[hi]i') ;;
'Slackware')
pkgs=$(ls -1 /var/log/packages | wc -l) ;;
'Gentoo'|'Sabayon'|'Funtoo'|'Kogaion')
Expand Down