मुझे उबंटू 19.04 में काम करने के लिए अन्य तरीके नहीं मिल सके इसलिए मैंने gtk.css फ़ाइल के संपादन का सहारा लिया:
nano ~/.config/gtk-3.0/gtk.css
यहाँ मैं उपयोग किया गया कोड है:
/* add a 3-pixel border around windows */
decoration {
border: 5px solid rgba(10, 10, 10, .3);
background:rgba(10, 10, 10, .3);
}
/* customize the titlebar for active window */
.titlebar {
background: rgba(10, 10, 10, .3);
border-top:solid 1px rgba(10, 10, 10, .3);
color:white;
}
/* customize the titlebar for background windows */
.titlebar:backdrop {
background: rgba(10, 10, 10, .5);
color:white;
}
फ़ाइल सहेजे जाने के बाद, अपने परिवर्तनों को लागू करने के लिए इस कमांड को चलाएँ:
setsid gnome-shell --replace
अंतिम परिणाम के लिए नीचे देखें।