Skip to content

Instantly share code, notes, and snippets.

@codemedic
Last active September 24, 2024 13:25
Show Gist options
  • Select an option

  • Save codemedic/f11cc460b8d9544f9afc to your computer and use it in GitHub Desktop.

Select an option

Save codemedic/f11cc460b8d9544f9afc to your computer and use it in GitHub Desktop.
CSS for KDE Konsole minimal, lighter, dark tabs
QTabBar,
QTabBar::tab
{
font-family: "Noto Sans";
font-size: 11px;
height: 16px;
padding: 2px;
border: 0px;
border-bottom: 3px solid palette(dark);
background-color: palette(dark);
color: palette(text);
}
QTabBar::tab:hover
{
text-decoration: underline;
}
QTabBar::tab:selected
{
font-weight: bold;
background-color: palette(window);
border: 0px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 palette(window), stop: 0.85 palette(window), stop: 1 palette(highlight));
}
QWidget, QTabWidget::pane, QTabWidget::tab-bar {
background-color: rgb(45, 45, 45);
}
QTabBar::tab {
color: rgb(120, 120, 120);
background-color: rgb(45, 45, 45);
font-size: 10px;
height: 25px;
padding: 0px;
border: 0px;
}
QTabBar::tab:selected, QTabBar::tab:hover {
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #1e5799, stop: 0.01 #2989d8, stop: 0.11 rgb(45, 45, 45));
color: #4F89CC;
}
@jabbalaci

jabbalaci commented Sep 19, 2016

Copy link
Copy Markdown

How to get these settings activated? I found my konsolerc file here: ~/.kde/share/config/konsolerc , but how to connect the two files? Thanks.

Edit: Found it! Settings -> Configure Konsole... -> TabBar, and there specify the user-defined stylesheet.

ghost commented Oct 20, 2016

Copy link
Copy Markdown

Thank you for this! I was wondering for a long time how to make the tab bar thinner. GitHub is a really cool way to share this config info.

@codemedic

codemedic commented Nov 23, 2016

Copy link
Copy Markdown
Author

I have a revised version with use palette-colours; konsole-with-palette-colours.css.

@fedon

fedon commented Mar 17, 2017

Copy link
Copy Markdown

Do you know how to write a selector for a tab with unread data?

@reuseman

Copy link
Copy Markdown

@jabbalaci Is still possible to do that? I can't find that settings

@GregorCH

Copy link
Copy Markdown

Is it possible to distinguish between tabs in which a process is running and tabs that are currently idle? Maybe by defining a css-logic that applies whenever the string "bash" is found in the tab title?

@rubyFeedback

Copy link
Copy Markdown

What does palette() mean there?

@roachsinai

Copy link
Copy Markdown

@rubyFeedback qt palette.

@roachsinai

Copy link
Copy Markdown

@grgoffe

grgoffe commented Sep 8, 2019

Copy link
Copy Markdown

Hey!

This is GREAT info. THANKS!

How would one change the fonts, etc. at the top of the konsole? You know, where "File", "Edit", etc. are shown?

Best regards,

George...

@Acemond

Acemond commented Nov 5, 2019

Copy link
Copy Markdown

How do you know the different possible variables to pass to the "palette()" method in the CSS file? Are there any other options?

@sachaz

sachaz commented Apr 2, 2020

Copy link
Copy Markdown

thanks using this !
Is a way to reduce the width of the vertical scroll bar ?

@kogaba

kogaba commented Apr 30, 2022

Copy link
Copy Markdown

Thank you. If anybody have a white line on top, use this:
QTabBar
{
qproperty-drawBase: 0;
}

@dhya-dev

dhya-dev commented Mar 8, 2023

Copy link
Copy Markdown

Thanks for this gist. Very helpful. There isn't a required location to install the CSS but for what it's worth I use: .kde/share/config/konsole.css I like the condensed font so you can sqeeze more text into tabs.

Here's my variant:

QTabBar::tab {
    font-family: Noto Sans;
    font-style: SemiCondensed Light;
    font-weight: 400;
    font-size: 8pt;
    height: 14px;
    min-width: 35px;
    max-width: 120px;
    padding: 3;
    border: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}   
QTabBar::tab:selected {
    background: rgb(76, 56, 83);
    color: rgb(255, 255, 255);
    font-weight: 600;
}

@codemedic

Copy link
Copy Markdown
Author

thanks using this ! Is a way to reduce the width of the vertical scroll bar ?

@sachaz Sorry. I am one of those who dislike scrollbars in their terminal. I have it turned off.

@codemedic

Copy link
Copy Markdown
Author

How do you know the different possible variables to pass to the "palette()" method in the CSS file? Are there any other options?

@Acemond Give this a try. Sorry for the (very) late reply.

@codemedic

codemedic commented Mar 29, 2023

Copy link
Copy Markdown
Author

codemedic/f11cc460b8d9544f9afc#file-konsole-with-palette-colours-css-L21, this line

font-weight: bold;

not work for me.

@roachsinai Could it be your font?

@codemedic

Copy link
Copy Markdown
Author

What does palette() mean there?

@rubyFeedback palette here is qt palette. In effect, it gives us a way to refer to colours from the current theme / colour scheme set by the DE.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment