Durchsuchen nach
Schlagwort: X11

The program fastfetch

The program fastfetch

There is a program, that is called fastfetch. This is a small but important program in order to show you all important information about your system in a small overview. How to install it? Red Hat family sudo dnf install fastfetch Debian family sudo apt install curl -y curl -sL „https://download.opensuse.org/repositories/cbox-fastfetch/Debian_$(lsb_release -rs)/Release.key“ | sudo gpg –dearmor -o /usr/share/keyrings/cbox-fastfetch.gpg echo „deb [signed-by=/usr/share/keyrings/cbox-fastfetch.gpg] https://download.opensuse.org/repositories/cbox-fastfetch/Debian_$(lsb_release -rs)/ /“ | sudo tee /etc/apt/sources.list.d/cbox-fastfetch.list sudo apt update sudo apt install fastfetch or you use Snap then:…

Weiterlesen Weiterlesen

How to use variables in the Bash?

How to use variables in the Bash?

🐧️ Linux Bash: ❓️ How to use variables in the Bash? ❓️ I use here the following Bash internal variables into a script. ➡️ $LOGNAME = the name from /etc/passwd ➡️ $XDG_SESSION_TYPE = What kind of session I use: X11 or Wayland From Facebook: OpenSource Traveler