Is there a way to show the following things on the Desktop? Not like a warning but like text in the right top corner, not where the hour and network connections are in the panel, but really on the desktop. Like on top of the wallpaper.
- IP address
- MAC address
- Boot Time
- DNS server
- Name of logged in user
For your IP, you can use
indicator-ip
. Open the terminal and run:It will look something like this:
For the real username, install
dconf-editor
by runningsudo apt-get install dconf-editor
. Once that's done, open updconf-editor
, and navigate toapps
and thenindicator-session
. Look forshow-real-name-panel
and turn that on totrue
(it is false by default) and that will show your username. .For older releases, use
gsettings set com.canonical.indicator.session show-real-name-on-panel true
.If you would like to disable it, run
gsettings set com.canonical.indicator.session show-real-name-on-panel false
For the rest(and if you like you can do the IP as well), we can create our own indicators. We need to first install
sysmonitor
.Open
sys-monitor
, and click on the Advanced Tab. We need to add a new script, so we click "New", thus we have this screen.In the Command Section, add your the required script you want to run. For example we will add the "Boot-Time" indicator. So in the command we will write
uptime -s
. Add whatever description you want and name. Save it and look for your newly added script, and then click "Add". Your script should now appear on the topbar.For example, here is the script to display the current CPU frequency for the first core:
Here is the indicator
UPDATE
If you looking for your internal IP, create a script(as described above) and in the command box, add this:
That should get you the internal IP.
WebUp8 Team - SysMonitor Reference