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.

Install odoo 12 : Linux/Ubuntu/Debian

clone/download odoo 12 community from odoo github: https://github.com/odoo/odoo (optional) clone odoo 12 enterprise addons from github: https://github.com/odoo/enterprise move odoo 12 and enterprise addons to "System Disk" so we have this directory: Directory path would be /odoo12 Download this install script and execute/modify to adjust folder position (if you plan to store odoo in different directory than mine) https://github.com/akhmadkresna/odoo12-_install_script.git # Adjust the script to match your environment sudo nano odoo-install.sh # Adjust permission sudo chmod +x odoo-install.sh # Execute the script to install Odoo: ./odoo-install install python requirement  pip3 install libsass THATS IT !!!

Fun CSS/JS : Font Typewriter Animation

Here is fun code to add typewriter animation to your words. Hope you guys having fun.