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: Get File Name of Uploaded Binary File

When uploading a file binary on odoo sometimeS we need to store the original file name for informative purpose. So thats why this tutorial will come in handy. well that was ridiculously fast !!! Things that need to take into account is make sure you add those xml on your formview because most of uploading file operation happen in formview. And then ypu can use the field file name in treeview.

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 !!!

Odoo: Create Sequence or Running Number

Odoo sequence ussually needed for automatically generated and suppose to be unique value to identified certain object or in this context is document. For example company need unique document number for every Sales document they have. When we need to create NEW sequence in odoo ? When we have new object and this object suppose to have unique and auto generated number. in this example we have new object called 'sale.doc' will be used to store any document related to SO such as contract, delivery doc etc. 1. create xml code to declare the sequence 2. call the sequence and set it on certain char field ('name) that belongs to the same object