Questions tagged [xmonad]

xmonad is a dynamically tiling X11 window manager that is written and configured in Haskell.

xmonad is a dynamically that is written and configured in Haskell.

156 questions
21
votes
5 answers

Does a terminal multiplexer have any benefit when used with a tiling window manager?

Both terminal multiplexers (screen, tmux) and keyboard-driven tiling window managers (ratpoison, dwm, xmonad) provide similar functionality. Is there any benefit in using both at the same time? What about problems that may arise?
Pubby
  • 313
  • 2
  • 6
20
votes
2 answers

xmobar does not appear on top of window stack when xmonad starts

I'm experiencing a strange behaviour of xmobar right after i enter xmonad. When i xmonad (from .xinitrc, i use XDM) my xmobar appears but it is not either at the top or bottom of the window stack. Once i start an application (e.g. terminal…
grochmal
  • 8,489
  • 4
  • 30
  • 60
13
votes
1 answer

How can I change the behavior of hotkeys in xmonad if the program is running?

I'm using a few key mappings in my xmonad.hs configuration file: ... , modMask = mod4Mask -- Rebind Mod to the Windows key ... [ ((controlMask, xK_Print), spawn "sleep 0.2; scrot -s") , ((0, xK_Print), spawn "scrot") , ((controlMask,…
xralf
  • 16,149
  • 29
  • 101
  • 149
11
votes
1 answer

Use WINDOWS key instead of ALT key in xmonad

I use xmonad + emacs. Both use ALT key heavily. So there are conflicts sometimes. My keyboard has WINDOWS key on it. I would like xmonad to use that key instead of ALT. My current ~/.xmonad/xmonad.hs file looks like this import XMonad import…
Pratik Deoghare
  • 1,217
  • 1
  • 11
  • 16
10
votes
1 answer

Save sessions to file in xmonad

Is it possible to save an xmonad session to a file and reload it on the fly? I don't want to save only the last session but to be able to save different sessions to different files and reload it if I want.
student
  • 17,875
  • 31
  • 103
  • 169
9
votes
1 answer

Xmonad defaults deprecation: what is the future proof configuration?

This may be borderline between here an SO since a lot of the question is about haskell programming. Yet, in the end, it is a configuration issue. Background and research Since 0.12 Xmonad throws this warning (several times) in…
grochmal
  • 8,489
  • 4
  • 30
  • 60
8
votes
1 answer

System Tray Icons on Xmonad - Xmobar Or any other minimal status bar

I am using slack desktop client on my Arch Linux. I am using Xmonad Window manager along with the Xmobar status bar. On other Desktop environments, for example XFCE, the Slack Desktop client shows a small Icon (System tray icons) on the status bar,…
Severus Tux
  • 1,035
  • 2
  • 10
  • 29
8
votes
2 answers

My .xsession and .xinitrc files are not executing

I have installed xmobar, xmonad on ubuntu 11.04. #!/bin/bash trayer --edge top --align right --SetDockType true --SetPartialStrut true \ --expand true --width 10 --transparent true --tint 0x191970 --height 12 & nm-applet --sm-disable & sleep…
AnkurVj
  • 993
  • 3
  • 13
  • 22
8
votes
3 answers

XMonad: set default workspace on startup to specific monitor

I'm using xmonad with a dual monitor setup. Here is a stripped down version of my config: import XMonad main = do xmonad $ defaultConfig { workspaces = ["1:db", "2:mail", "3:web", "4:dev", "5", "6", "7", "8:chat", "9", "10"] } Is there a…
ilia choly
  • 261
  • 3
  • 7
7
votes
1 answer

Change the red border between windows in xmonad

Is it possible to set somewhere in configuration the color of the border between windows from red to black or remove the border completely?
xralf
  • 16,149
  • 29
  • 101
  • 149
7
votes
1 answer

xorg memory leak

I've read this question but it doesn't seem to be the same issue, as the memory leak there is an order of magnitude smaller than mine and seems to be caused by Nvidia drivers.. Here's my top output at the moment: top - 03:51:03 up 7 days, 11:09, 11…
Patrick Collins
  • 301
  • 1
  • 11
7
votes
1 answer

Configure xmobar to show workspaces

What should my xmonad.hs file look like to correctly give workspace info to xmobar?
user66261
  • 71
  • 1
  • 2
6
votes
3 answers

Run XMonad's startup hook only on initial startup

I have the following startupHook in my xmonad.hs , startupHook = spawn "~/.xmonad/autostart" I am starting many apps and daemons in this script and it is written to run only once on startup. But this is being run everytime I hit Mod-q, i.e., to…
sharat87
  • 4,199
  • 4
  • 23
  • 17
6
votes
1 answer

How do I enable a three column layout in XMonad?

I'm a Haskell and XMonad beginner. I'm trying to set up my tiling layout to allow three side by side columns (so that I can have three simultaneous tall and thin Vim instances for coding, per workspace). In the docs, I've found a three-column layout…
ire_and_curses
  • 12,232
  • 3
  • 38
  • 33
6
votes
1 answer

How to float a window which has WM_NAME but no WM_CLASS

Configuration Debian Linux 8.2, 64bit, Xmonad 0.11 When it started I recently upgraded my system (to debian8), so I had to make some adjustments to my xmonad.hs configuration - namely changing managehooks for GStreamer'sgst-launch windows from: ,…
Jan Spurny
  • 561
  • 1
  • 5
  • 16
1
2 3
10 11