Showing posts with label GNOME. Show all posts
Showing posts with label GNOME. Show all posts

Saturday, January 25, 2020

How to get GNOME version from the command line

Get Gnome version from terminal
$: gnome-shell --version

Alternative ways to get version, works on older versions of Gnome.

$: gnome-about --version

This will show something like:
GNOME gnome-about 2.32.0

This can also be done using the command below.
$: gnome-session --version
Above command does not work on Fedora 22 Workstation.

Tags:
GNOME version command line cli

Thursday, March 31, 2016

Install minimal GNOME shell on Debian Stretch

#: apt install gdm3 xserver-xorg-legacy
This will install just the GNOME shell, pretty lean and mean (for GNOME standard :)

Note:

  • This is a pre-release of Debian Strech
  • Need to add xserver-xorg-legacy otherwise it will not work, might be related to this bug.

CPP Quick Guide

Basics Hello world User input While loop If statement For loop Switch statement Read file using ifstream Write to a file using ofstr...