xmonad-contrib-0.16.999: Community-maintained extensions extensions for xmonad
Copyright(c) 2020 Leon Kowarschick
LicenseBSD3-style (see LICENSE)
MaintainerLeon Kowarschick. <thereal.elkowar@gmail.com>
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Actions.TiledWindowDragging

Contents

Description

Provides an action that allows you to change the position of windows by dragging them around.

Synopsis

Usage

You can use this module with the following in your ~/.xmonad/xmonad.hs:

import XMonad.Actions.TiledWindowDragging
import XMonad.Layout.DraggingVisualizer

then edit your layoutHook by adding the draggingVisualizer to your layout:

myLayout = draggingVisualizer $ layoutHook def

Then add a mouse binding for dragWindow:

, ((modMask .|. shiftMask, button1), dragWindow)

For detailed instructions on editing your mouse bindings, see XMonad.Doc.Extending.

dragWindow :: Window -> X () Source #

Create a mouse binding for this to be able to drag your windows around. You need XMonad.Layout.DraggingVisualizer for this to look good.