You are not logged in.

#1 2016-02-11 23:23:52

cemsbr
Member
From: Brazil
Registered: 2008-05-03
Posts: 111
Website

[SOLVED] xmobar below window in workspace 1

Recently, any window covers xmobar in any layout, but only in workspace 1. I haven't changed any config file related to xmobar or xmonad. I tried to recompile xmonad and reboot, but the problem persists...

Last edited by cemsbr (2016-02-13 14:20:08)

Offline

#2 2016-02-12 08:18:21

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,732
Website

Re: [SOLVED] xmobar below window in workspace 1

I noticed this problem recently.

EDIT: This is a natural consequence of using a rolling release distribution -- the configuration files may need to be re-jigged following package updates.

Try adding these lines to .xmobarrc:

    , persistent       = True
    , hideOnStart      = False
    , allDesktops      = True
    , overrideRedirect = False

https://github.com/Head-on-a-Stick/conf … r/xmobarrc

Just to note: you should always post your configuration files when starting support threads.

Last edited by Head_on_a_Stick (2016-02-12 08:19:48)

Offline

#3 2016-02-13 14:19:49

cemsbr
Member
From: Brazil
Registered: 2008-05-03
Posts: 111
Website

Re: [SOLVED] xmobar below window in workspace 1

Thank you, only overrideRedirect = False was enough for me. This is my final .xmobarrc:

Config { font = "xft:Terminus:pixelsize=14,ipagothic:pixelsize=14:antialias=false"
       , borderColor = "black"
       , border = NoBorder
       , position = TopW L 98
       , lowerOnStart = True
       , persistent = False
       , overrideRedirect = False
       , commands = [ Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 100
                    , Run Memory ["-t","Mem: <usedratio>%"] 100
                    , Run BatteryP ["BAT0"] ["-t", "<acstatus>"
                                             ,"-L", "10", "-H", "80"
                                             ,"--low", "red"
                                             ,"--high", "green"
                                             ,"--"
                                             ,"-O", "<fc=green>AC</fc> <left>%"
                                             ,"-i", "Charged"
                                             ,"-o", "<fc=red>Batt</fc> <left>% <watts>W <timeleft>"
                                             ,"-L", "-15", "-H", "-5"
                                             ,"-l", "red"
                                             ,"-m", "blue"
                                             ,"-h", "green"
                                             ,"-f", "ADP1/online"] 600
    		    , Run Date "%m-%d %a %H:%M" "date" 150
                    , Run StdinReader
                    ]
       , sepChar = "%"
       , alignSep = "}{"
       , template = "%StdinReader% }{ %cpu%, %memory%, %battery%, <fc=#ee9a00>%date%</fc>                      "
       }

Offline

Board footer

Powered by FluxBB