, Gnome 3.18, এটা সম্ভব ছিল CSS পরিবর্তন করে সব জানালার শীর্ষকবারে উচ্চতা পরিবর্তন করতে ~/.config/gtk-3.0/gtk.css
অনুযায়ী GNOME 3 / GTK + 3 শিরোনাম দণ্ড উচ্চতা কমাতে ।
.header-bar.default-decoration {
padding-top: 0px;
padding-bottom: 0px;
}
.header-bar.default-decoration .button.titlebutton {
padding-top: 0px;
padding-bottom: 0px;
}
/* No line below the title bar */
.ssd .titlebar {
border-width: 0;
box-shadow: none;
}
জিনোম ৩.২০-তে, এটি আর শিরোনাম বার / সিএসডি (শিরোনাম বারে জিনোম-নির্দিষ্ট বোতাম), যেমন নটিলাস (ফাইলস), সেটিংস, ফটো, পরিচিতি ইত্যাদির উইন্ডোগুলিতে আর প্রয়োগ হয় না The অন্যান্য অ্যাপ্লিকেশনগুলির জন্য, যেমন জিনোম-টার্মিনাল এবং জিভিম। জিনোম-প্রোগ্রামে যেমন শিরোনামবারের উচ্চতা কীভাবে হ্রাস করব?
হালনাগাদ
এই reddit থ্রেডে যা পরামর্শ দেওয়া হয়েছে আমি তাও চেষ্টা করেছি । আমি উভয় window.ssd
এবং .ssd
শুধুমাত্র চেষ্টা , কোন পাশা। এটি কাজ করে, আরও তথ্যের জন্য পোস্ট করা উত্তরটি দেখুন
window.ssd headerbar.titlebar {
padding-top: 1px;
padding-bottom: 1px;
min-height: 0;
}
window.ssd headerbar.titlebar button.titlebutton {
padding-top: 1px;
padding-bottom: 1px;
min-height: 0;
}
এবং
/* shrink headebars */
headerbar {
min-height: 38px;
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
padding-right: 2px;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
margin-top: 2px; /* same as headerbar side padding for nicer proportions */
margin-bottom: 2px;
}
/* shrink ssd titlebars */
.default-decoration {
min-height: 0; /* let the entry and button drive the titlebar size */
padding: 2px
}
.default-decoration .titlebutton {
min-height: 26px; /* tweak these two props to reduce button size */
min-width: 26px;
}