I wrote the following code in the config file (hardcoding, but it works):
...

def hide_show_bar(qtile):
    bar = qtile.currentScreen.top
    if bar.size == 0:
        bar.size = 30
        bar.window.unhide()
    else:
        bar.size = 0
        bar.window.hide()
    qtile.currentGroup.layoutAll()

...

Key([mod, "shift"], "d", lazy.function(hide_show_bar))

...

четверг, 21 августа 2014 г., 3:40:46 UTC+4 пользователь Logan Kaser написал:
>
>
> https://github.com/qtile/qtile-examples/blob/master/user-configs/cjbarnes/config.py#L102
>
> On Friday, July 18, 2014 8:05:41 AM UTC-7, Владимир К wrote:
>>
>> Is it possible to hide the default qtile bar and display it only on a 
>> hotkey?
>>
>
> This can make one window fullscreen, It's not perfect for everything but 
> it does hide the bar somehow. Might be worth research. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"qtile-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to