Skip to main content

Jarvis, we love you 3000!

Would you dig a Desktop like that?
Of course you would! I cannot imagine anyone saying no to this screen!
And guess what, this is all Live. Have a look at the GIF below:
If you're thinking this would look more cooler in person, you're absolutely right, Mr. Stark! Go build your own JARVIS right now on your Linux OS.

I must credit the amazing blog which guided me to this customization. Here is the link:
NomiSpeaks' Blog on Making a JARVIS Live Wallpaper

However, since this post is 2 years old, there are some things that you will need to do additionally to make this work.

Installation of Conky Manager

First, when you try to install conky-manager by running the command:
     sudo apt-get install conky-manager
 You will get an error something like this:
     E: Unable to locate package conky-manager
So here's another way to get to this. A github repo named conky-manager2 is built for the same purpose.
Follow the steps in that repo to install conky-manager.
Now one last step. Run the following command: 
     sudo apt-get install conky-all
Alright, now go to Show Applications in the bottom-left of your Dock (assuming you haven't configured it) and find Conky Manager.

Open it, and a screen like this will open up.
Don't worry if your window doesn't look exactly like this. You must be able to see a list of conky widgets here. If you check a box, that widget will pop up in the Desktop! You can actually build your own combination of conky widgets for your Desktop.
Now you can go back to the link I mentioned earlier, and download the conkyrc zip file, the coolest conky ever.
Extract the zip file and save the folder in .conky folder as mentioned.

The Wallpaper

The Wallpaper isn't available on the site. So you can save the following image directly in your PC.

Positioning & Configuring the Conky Widgets

  • Go to the .conky folder in the Home directory (Enable "Show Hidden Files") and locate the conky widget you want to configure by the path you saw in the Conky Manager application.
  • Open the file in a Text Editor
  • Find the attribute gap_x/gap_y
  • After this, it's pretty much CSS-like experimentation from here.
  • Another configuration that you can try is changing the line: own_window_type normal to own_window_type desktop
  • The advantage in this is, when you try to go back to Desktop from another window using the keyboard shortcut <Super> (Windows Key) + D, the widgets would be visible with the wallpaper. 
  • This is particularly handy when you are monitoring RAM & CPU Usage, and need a quick switch to look at it.
  • To save battery life, change update_interval to 3/4/5 so the screen updates are less frequent. 
  • Thus, you are free to use any other wallpaper too since you can even change the colors of the widget.

Conclusion

Although this wallpaper might seem superficial, my personal experience is that it helps me dynamically understand which programs, applications or processes are taking more RAM & CPU space and helps me keep my PC in a better state.
So all the best and do let me know how your Desktop turns out!

Comments

Popular posts from this blog

Namaste JavaScript Quick Notes

Note:  Akshay Saini's Namaste JavaScript is probably the best course for JavaScript developers out there. These are my personal notes that I made while watching the course; they serve more of as an online quick reference for my understanding and revision, and I hope it benefits anyone reading it too! Everything in JS happens inside an Execution Context. Before a JS code is run, memory is allocated and variables are set as undefined   , and functions are set as their exact code in the scope within the Execution Context. The global execution context hosts all the global variables and function definitions. An Execution Context has 2 components: Memory, that stores variables and functions; and Code, that reads and executes the code. Call Stack maintains the order of execution contexts. Since JS is single threaded and asynchronous, at one point of time, only one function is executed which is at the top of the call stack. For each function, an execution context is created before executi

i3wm essentials - I (Brightness)

So you have started using i3 and somehow managed to open your browser and almost resumed your normal work.  But wait, the brightness is too much isn't it? Or is it too low? The mousepad used to work fine, but now all of a sudden tapping does not equal click?!  Don't worry.  This blog series will tell you all about the essential setup commands and common shortcuts that I use to navigate my work in i3, and how you can too. Changing the brightness So you just started i3 and you just can't take this brightness setting. You go for your function keys, and damn! They aren't working. Quick fix: Run the following command if you need to change the brightness ASAP. xrandr -q | grep ' connected' | head -n 1 | cut -d ' ' -f1 This will give an ouput that's the name of your monitor.  Use that monitor name here and change the values of brightness to suit your needs. xrandr --output <monitor-name> --brightness 0.7 Now that your eyes are comfortable, let me show

i3wm essentials - II

Welcome back! Let's continue this guide with other setup essentials for i3. Enabling Mousetap Chances are that if you're using a laptop, then tapping on the mousepad does not equal a click for you. You need to enable tapping in your config. Fortunately, there is one documentation available that works for majority of the setups. I don't need to explain this one in detail. Here you go: Enable tap to click in i3 . Volume Control This one is simple again. Do you remember the i3 config file I talked about in the previous blog ? All you need to do is go to that file and find the line: bindsym XF86AudioRaiseVolume Just below that line you will find lines with XF86AudioLowerVolume and XF86AudioMute too. Anyway, the truth is, there are 2 sets of lines with these keywords. Chances are that the line: bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink-volume 0 +5% Will be uncommented and the line: bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink vo