Baurzhan Muftakhidinov
5ea30daa29
Fix the name of Xfce
2017-03-29 12:38:15 +05:00
Lee
0451fcee67
Fix gpu variable check esp it's empty
...
Fix for the following problem:
```
/usr/bin/screenfetch: line 1341: [: =: unary operator expected
```
2017-03-14 15:50:40 +08:00
darealshinji
36518ac06d
Scientific Linux detection through lsb_release
2017-03-10 14:55:45 +01:00
darealshinji
2172669ede
Attempt to fix false detection of Android on SailfishOS
2017-03-10 14:47:47 +01:00
darealshinji
3845a592fd
Bump version
2017-03-10 14:43:47 +01:00
darealshinji
0496a0e2a5
Indentation fixes
2017-03-08 21:00:13 +01:00
darealshinji
ece1671a4f
Merge pull request #443 from DmitryHetman/master
...
Added DetectIntelGPU function
2017-03-08 20:52:58 +01:00
Dmitry
a37613578c
Update screenfetch-dev
2017-02-25 23:52:06 +00:00
DmitryHetman
17a0f59345
added DetectIntelGPU function
2017-02-25 23:44:32 +00:00
darealshinji
544c0130d1
Merge pull request #441 from DmitryHetman/master
...
added Gentoo Release check
2017-02-21 21:43:24 +01:00
DmitryHetman
3e56f10b13
added Gentoo Release check
2017-02-21 19:41:17 +00:00
darealshinji
d1f039987f
Merge pull request #440 from fuxprojesi/master
...
ASCII Logo aded
2017-02-13 16:13:44 +01:00
fuxproject
8f5490511a
ASCII Logo added for fux
2017-02-13 17:22:55 +03:00
fuxproject
e46ec46e4a
ASCII Logo added
2017-02-13 17:09:15 +03:00
Casey Strouse
fc16688e6d
Add chromebrew detection for Chrome OS pkgs
...
Chromebrew (https://github.com/skycocker/chromebrew ) is a popular
package manager for Chrome OS and Chromium OS user. This adds support
for detecting it's presence and grabbing the package count.
2017-01-29 15:56:12 -07:00
Matthew T Hoare
2961b74746
screenfetch-dev: added GTK3 theme detection for BunsenLabs.
2017-01-26 19:37:10 +00:00
Matthew T Hoare
c584da244b
screenfetch-dev: fixed theme & font name for BunsenLabs desktop.
2017-01-26 19:29:17 +00:00
Matthew T Hoare
166e8102d8
Patch number added to OpenBSD kernel version.
2017-01-22 22:11:41 +00:00
Matthew T Hoare
8fa05b0909
Added OpenBSD kernel version detection.
2017-01-22 22:05:37 +00:00
Matthew T Hoare
eb44c0577d
Fixed RAM display, corrected OpenBSD section for sub-100MiB output.
2017-01-22 21:00:04 +00:00
Randall Tux
1f2c089e9a
add GrombyangOS distro
2016-12-24 05:36:33 +07:00
darealshinji
347dd866be
New distro: Parrot Security ( close #425 )
2016-12-06 08:30:05 +01:00
Mike Krüger
5698dafce4
Add SwagArch to infoDisplay()
2016-12-03 07:45:00 -05:00
Mike Krüger
a56ef29dbf
Add SwagArch to detectpkgs()
2016-12-03 07:41:21 -05:00
darealshinji
ed26ac9081
new distro: SwagArch ( close #421 )
2016-12-03 10:53:09 +01:00
Bernhard Landauer
6710dc9284
update Manjaro-logo
2016-12-01 00:58:29 +01:00
fuxproject
643d7054af
New Distro: Fux
2016-11-23 15:34:42 +02:00
darealshinji
50b24c03be
New distro: Pardus
2016-11-19 19:57:36 +01:00
darealshinji
a4be668557
revert 0f516ae
...
close #413 #399
2016-11-13 22:30:24 +01:00
darealshinji
3cdcc265a4
Calculate correct memory usage on Linux ( close #386 )
2016-11-13 01:43:39 +01:00
darealshinji
81f2ff4495
Merge pull request #402 from AMDmi3/uname-for-bsd
...
Rely on `uname' output for *BSD os decection
2016-11-13 00:18:36 +01:00
redapple0204
26286390b2
Update screenfetch-dev
2016-11-13 07:10:26 +08:00
redapple0204
c89a74d9bf
Update screenfetch-dev
2016-11-12 20:27:37 +08:00
darealshinji
afc4e3437b
Merge pull request #408 from delan/patch-2
...
OpenBSD: glxinfo(1): suppress standard error
2016-11-06 00:28:29 +01:00
Delan Azabani
1375f2d833
OpenBSD: glxinfo(1): suppress standard error
...
Prior to this commit, remote (or other text-based) users would have
seen this error message at (or near) the start of the output:
"Error: unable to open display "
If the host doesn't have xbaseXX.tgz, users would have seen this:
"glxinfo: command not found"
2016-11-06 06:02:38 +08:00
Delan Azabani
8f051c5df5
OpenBSD: fix usedmem for values < 100000 KiB
...
According to vmstat.c [0], when vmstat(8) is run with no arguments,
the third line starts with the following printf(3) format, where the
number that comes from the %6u specification is what we're after:
" %u %u %u %6u" [...]
cut(1) with -d ' ' doesn't ignore empty fields, so this output...
" 1 0 0 123456" [...]
...is handled correctly...
"<> <1> <0> <0> <123456>" [...]
...but this output...
" 1 0 0 93328" [...]
...is not...
"<> <1> <0> <0> <> <93328>" [...]
This results in an error:
./screenfetch-dev: line 1357: / 1024: syntax error:
>>>>>>> operand expected (error token is "/ 1024")
The issue is fixed by replacing cut(1) with awk(1).
[0] src/usr.bin/vmstat/vmstat.c, revision 1.139, lines 361 through 367
2016-11-06 05:47:56 +08:00
Syah Dwi Prihatmoko
1519a2a912
fix typos
2016-11-01 15:08:44 +07:00
Syah Dwi Prihatmoko
761d99f446
add Blankon distribution
2016-11-01 15:02:02 +07:00
Dmitry Marakasov
9158a27c97
Rely on `uname' output for *BSD os decection
...
uname may be used to reliably detect most *BSD OSes (namely FreeBSD,
NetBSD, OpenBSD, DragonFly), so use it. Otherwise it falls back to
/var/run/dmesg.boot, which is not always available (e.g. jails) and
is not as reliable anyway.
2016-10-28 16:33:31 +03:00
Nero
fa79fa91fe
Fix bugs for busybox systems:
...
- BusyBox detection was TinyCore-only
- ps -p failed
- $USER unavailable
2016-10-26 22:19:36 +00:00
darealshinji
0f516ae237
GPU detection: prefer lspci over glxinfo
2016-10-22 01:15:27 +02:00
darealshinji
c7ca34bf72
SparkyLinux logo
2016-10-22 00:43:55 +02:00
darealshinji
e69273b370
Cosmetics
2016-10-17 11:51:33 +02:00
darealshinji
f89721d44d
Merge pull request #397 from r2qokk/master
...
chagne memtioned in #396
2016-10-17 11:48:51 +02:00
replaceits
5994976b4f
Added support for Blackbox on Windows. This will put Blackbox as the WM if its installed and running and will also find the style that Blackbox is currently using and use that as the WM Theme.
2016-10-17 01:49:42 -04:00
Ray Zhu
5774f849d1
chagne memtioned in #396
2016-10-17 12:27:41 +08:00
parazyd
a655e05c39
fix shell detection on (gentoo) musl-libc linux distros
2016-10-11 01:20:16 +02:00
Levi Siuzdak
ed277db7a6
No longer gets iTerm's font while in Terminal.app
...
On OS X it now checks if iTerm's actually used, not just whether it's installed
2016-10-02 02:07:58 +02:00
undrskr
5575d654a8
Update Solus logo
2016-10-01 19:47:15 +03:00
darealshinji
a1cacfc90d
show CPU temperature
2016-09-29 04:39:53 +02:00