Skip to main content

Perfecto Ubuntu GTK and Gnome-Shell Theme

Hello fellow bugs creator, this time i will share my ubuntu themes tweak/interface. After research, experiment, pain and desperation finally i found a formula to make my ubuntu look so pleasing in the eyes. i mean just look at this.


yes i know so stunning right? no not jessica barden (she is also stunning in this series). Without further due lets type some magical world. btw i use ubuntu 18.04

1. Tweak Tool

first we need to install g-nome tweak tool so we can activate custom theme.

$ sudo apt install gnome-tweak-tool

2. Themes



I use theme called McOS-themes that you can download from this link. After download the theme, extract it and go to home/.themes directory. If .themes folder didnt exist you can manually create it. Then your new theme should be appear in gnome tweak tool.

3. Gnome Shell Theme

make sure you already enable "user-theme" gnome extension. well if you have no idea what i am talking about please do me a favor educate yourself from this link. :3

gnome shell will take your ubuntu desktop to the next level. it will change default/base color of your ubuntu, such as the transparancy/color of topbar and its menu. You can download gnome shell theme that i use from this link. extract the downloaded file and place it in the home/.themes directory.

4. Icons

For the icon i use this one. Download, extract and put the folder in the /home/.icons directory.

BONUS !!!!!

here is theme i use for my IDE (intelliJ IDEA). check it on the jet brains plugin page.





What do you think of my ubuntu desktop? feel free to share yours.

Comments

Popular posts from this blog

Odoo: How to Inherit Controller

Sometime we need to modify a certain behavior when accessing odoo url (route). That time we need to do inheritance to odoo controller and then put our desired custom behavior when the url triggered. The way to inherit an odoo controller is slightly different than to inherit odoo object/model. In this tutorial i will do inheritance on odoo route "/shop/checkout" which is the url route when doing website sale checkout, because i want to show some specific product information on the website that i cant call in the xml template unless i parse the data from python controller to xml view. Lets jump into it. Here is the base controller Here is the inheritance controller in the example above i import base controller class (WebsiteSale) and use it as parameter on my new class (WebsiteSaleInherit). Thats it !! Comment below if you have any questions.

Odoo Javascript Debugging

When it comes to programming, we can all agree that out code is rarely work on a first try. Because of the sheer virtue of fact that, even if you can conceptualize a problem and reduce it to it’s base states, to fully envision it into it’s most granular detail in terms of hundreds of lines of code - Is just not realistic. Thats why i can say that debugging is crucial part of programming. Here few tips to do javascript debugging in odoo using google chrome developer tools. some points also applicable on debugging general website not just odoo. Odoo Developer Mode (with assets) When it comes to javascript debugging in odoo, we should enable ‘asset debugging’. Trust me it will saves your ass a lot of time. Odoo internally use assets like CSS and JavaScript. In normal mode this asset will combined to a file. So debug with assets will prevent asset to be merged to one file and display actual CSS and JavaScript files on chrome dev tools. Of course this mode will reduce per...