Cierre de neofetch en abril 2024
Find a file
Wesley Schwengle b4054ec28a Show commandline name instead of shortened command line
/proc/pid/cmdline holds the complete command line for a process unlike
/prod/pid/comm

The biggest difference when using cmdline vs comm is the following, when
running an app via update-alternatives as done with Debian for example,
you get the name x-terminal-emulator vs x-terminal-emul. Essentially, we
want the full name of the process and not the shortened one.

This would allow for some more magic with which, readlink and basename
that to get the actual name. However, readlink isn't available on all
systems and some options aren't available on BSD systems. realpath might
be used, but also that may not be available, which leaves us with
implementing a bash only solution in case these do not exist. I've tried
doing that with bash (via bats) in the past. Bats solved it doing it
like this: https://github.com/bats-core/bats-core/pull/312

An alternative way is to ls the file /proc/id/exe and look at where
this symlink is pointing to and basename that:

  $(basename ls -l /proc/2464281/exe | awk '{print $NF}')

Signed-off-by: Wesley Schwengle <wesleys@opperschaap.net>
2024-04-06 22:59:19 -04:00
.github docs: update 2019-12-28 22:58:06 +00:00
.travis.yml docs: update 2020-04-19 12:01:41 +03:00
CONTRIBUTING.md docs: update 2018-06-03 12:19:03 +10:00
LICENSE.md docs: update (#1956) 2021-11-14 11:53:00 +02:00
Makefile meta: fix makefile, closes #1858 2021-08-05 10:15:12 +03:00
neofetch Show commandline name instead of shortened command line 2024-04-06 22:59:19 -04:00
neofetch.1 Added VNux GNU/Linux Neofetch Logo (#1937) 2021-11-08 06:35:52 +02:00
README.md docs: update 2019-09-10 08:44:30 +03:00

logo

A command-line system information tool written in bash 3.2+

Packaging status

neofetch

Neofetch is a command-line system information tool written in bash 3.2+. Neofetch displays information about your operating system, software and hardware in an aesthetic and visually pleasing way.

The overall purpose of Neofetch is to be used in screen-shots of your system. Neofetch shows the information other people want to see. There are other tools available for proper system statistic/diagnostics.

The information by default is displayed alongside your operating system's logo. You can further configure Neofetch to instead use an image, a custom ASCII file, your wallpaper or nothing at all.

neofetch

You can further configure Neofetch to display exactly what you want it to. Through the use of command-line flags and the configuration file you can change existing information outputs or add your own custom ones.

Neofetch supports almost 150 different operating systems. From Linux to Windows, all the way to more obscure operating systems like Minix, AIX and Haiku. If your favourite operating system is unsupported: Open up an issue and support will be added.

More: [Dependencies] [Installation] [Wiki]