Tôi không thể làm cho các phương thức khác hoạt động trong Ubuntu 19.04 vì vậy tôi đã dùng đến cách chỉnh sửa tệp gtk.css:
nano ~/.config/gtk-3.0/gtk.css
Đây là mã tôi đã sử dụng:
/* 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;
}
Khi tệp được lưu, hãy chạy lệnh này để áp dụng các thay đổi của bạn:
setsid gnome-shell --replace
Xem bên dưới để biết kết quả cuối cùng.