Questions tagged [xmobar]

xmobar is a lightweight, text-based, status bar written in Haskell. It was originally designed to be used together with Xmonad, but it is also usable with any other Window Manager. While xmobar is written in Haskell, no knowledge of the language is required to install and use it.

xmobar is a minimalistic, text based, status bar. It was originally designed and implemented by Andrea Rossato to work with xmonad, but it's actually usable with any window-manager.

34 questions
19
votes
5 answers

Xmonad toggle fullscreen / xmobar

Given my limited (zero) knowledge with Haskell the xmonad.hs can be challenging. I am looking for how to modify my config file to allow for "true" fullscreen using for example VLC watching videos. My current xmonad.hs: import XMonad import…
toeplitz
  • 777
  • 1
  • 8
  • 27
8
votes
1 answer

XMobar is hidden on first XMonad workspace

I installed XMonad and XMobar with configured settings. When I start XMonad a XMobar on any without first workspace is dock and opened programs have place below XMobar, but on first workspace when I open any program XMobar become hidden. These are…
user6129358
5
votes
1 answer

How to change xmobar configuration on the fly

I want to switch between xmobar configurations on the fly by using key combinations. I have naively tagged the following onto my other key mods: , ((controlMask, xK_l), xmproc <- spawnPipe "/usr/bin/xmobar /home/tony/.xmobarLrc") , ((controlMask,…
Tony Martin
  • 337
  • 1
  • 12
4
votes
2 answers

Icons for indicating layouts in XMobar (XMonad)

I know XMobar supports bitmap icons and I was able to configure those. However I also want to use icons for indicating current XMonad layout, but XMobar gets it on stdin from XMonad. And I couldn't figure out a way to pass bitmap icons instead of…
rkiyanchuk
  • 142
  • 1
  • 7
3
votes
1 answer

Haskell Variable not in scope

I am configuring my xmonad file to send the Stdout to a SpawnPipe per the documentation at https://hackage.haskell.org/package/xmonad-contrib-0.16/docs/XMonad-Hooks-DynamicLog.html#v:ppOutput Here is the code that I have so far... I am sure I am…
Nick McLean
  • 601
  • 1
  • 9
  • 23
3
votes
2 answers

Using color inside separator | fixed width of xmobar command field

I have some xmobarrc config Config { lowerOnStart = False, font = "xft:Terminus-12" , bgColor = "#000000" , fgColor = "#8080A1" , position = Top , commands = [ Run Network "eth0"…
2
votes
1 answer

XMonad tabbed layout hides XMobar in Arch linux

Xmonad hides xmobar and tabs on tabbed layouts. What is wrong with config? I am using xmonad with xmobar for long time. But last time when I migrated back to Arch linux all layouts from XMonad.Layout.Tabbed show windows on full screen. No xmobar or…
Sasha
  • 105
  • 9
2
votes
0 answers

Format weather integration in xmobar

I am trying to configure the Run Weather integration in my .xmobarrc file. Currently I have it working this way, this is the one line I need help with: [ Run Weather "KMGW" ["-t", "temp…
huva
  • 21
  • 3
2
votes
0 answers

XMobar disappears behind background when restarting XMonad in Gnome session

I use a layout with avoidStruts so that I can bind key ((myModMask, xK_b), sendMessage ToggleStruts) to hide the xmobar toolbar. Now I have a strange behaviour: When restarting XMonad with "mod-q", XMobar in a GNOME session gets hidden behind the…
Konrad Eisele
  • 3,088
  • 20
  • 35
1
vote
1 answer

Migrating XMobar to the new 0.17 standard

Just to make it clear, my XMobar uses UnsafeStdinReader and SpawnPipe to send information about workspaces right now. Here are the relevant portions of the configuration: main = do xmprocleft <- spawnPipe "xmobar -x 0…
BL155
  • 50
  • 4
1
vote
0 answers

xmobar is using low color depth resulting in bad contrast

I'm trying to set-up xmobar with xmonad. I've run into an issue with the color depth used by xmobar where the color displayed is same for "#5e81ac" (blue) and "#1c1f26" (dark gray). The 'dark gray' color is the background in my config and I'm trying…
Parth K
  • 587
  • 5
  • 18
1
vote
1 answer

xmobar stuck on Updating

So I just installed xmobar for the first time and I did some hacking on it with help of documentation and some YouTube videos. When I reload the xmonad wm i get the xmobar bar but it's stuck on Updating... I'll provide the config file. Thanks in…
wujovic
  • 67
  • 1
  • 1
  • 6
1
vote
0 answers

xmobar not launching via xmonad

I am very new to xmonad and I am trying to launch xmobar from the xmonad.hs file but I can't seem to get it to work. I have been looking all around the internet but still no solution. The wierd thing is that I can easily launch it using the terminal…
Simon
  • 107
  • 9
1
vote
1 answer

Use Xmobar on several Monitors

This Question was answered several times but I do not understand the accepted answers. For example here How to spawn XMobar instance for each screen?. In the question the user refers to another question where the solution is hidden behind a comment.…
M0M0
  • 200
  • 9
1
vote
2 answers

Xmobar is "Updating" when attempting to run script

My issue here is that my Xmobar says that it's "Updating..." when I provide the layout with a path to a C script (the executable)that I hacked together. I included Run Stdinreader and that made no dent on the issue. I was under the impression that…
user15055804
1
2 3