2021-04-16 19:17:35 -04:00
|
|
|
-- Base
|
2019-01-15 16:27:01 -05:00
|
|
|
import XMonad
|
2020-12-17 02:05:21 -05:00
|
|
|
import System.Directory
|
2020-06-25 00:02:45 -04:00
|
|
|
import System.IO (hPutStrLn)
|
2020-07-17 18:59:13 -04:00
|
|
|
import System.Exit (exitSuccess)
|
|
|
|
import qualified XMonad.StackSet as W
|
|
|
|
|
|
|
|
-- Actions
|
2021-02-26 01:10:02 -05:00
|
|
|
import XMonad.Actions.CopyWindow (kill1)
|
2021-04-14 00:56:09 -04:00
|
|
|
import XMonad.Actions.CycleWS (Direction1D(..), moveTo, shiftTo, WSType(..), nextScreen, prevScreen)
|
2020-07-17 18:59:13 -04:00
|
|
|
import XMonad.Actions.GridSelect
|
2020-06-15 21:47:50 -04:00
|
|
|
import XMonad.Actions.MouseResize
|
2020-07-17 18:59:13 -04:00
|
|
|
import XMonad.Actions.Promote
|
|
|
|
import XMonad.Actions.RotSlaves (rotSlavesDown, rotAllDown)
|
|
|
|
import XMonad.Actions.WindowGo (runOrRaise)
|
|
|
|
import XMonad.Actions.WithAll (sinkAll, killAll)
|
|
|
|
import qualified XMonad.Actions.Search as S
|
|
|
|
|
|
|
|
-- Data
|
2020-11-12 17:57:50 -05:00
|
|
|
import Data.Char (isSpace, toUpper)
|
2021-02-26 01:10:02 -05:00
|
|
|
import Data.Maybe (fromJust)
|
2020-07-17 18:59:13 -04:00
|
|
|
import Data.Monoid
|
|
|
|
import Data.Maybe (isJust)
|
|
|
|
import Data.Tree
|
|
|
|
import qualified Data.Map as M
|
2020-05-20 18:29:47 -04:00
|
|
|
|
2019-01-15 16:27:01 -05:00
|
|
|
-- Hooks
|
2020-05-24 22:27:19 -04:00
|
|
|
import XMonad.Hooks.DynamicLog (dynamicLogWithPP, wrap, xmobarPP, xmobarColor, shorten, PP(..))
|
2020-06-15 21:47:50 -04:00
|
|
|
import XMonad.Hooks.EwmhDesktops -- for some fullscreen events, also for xcomposite in obs.
|
2020-06-06 19:40:47 -04:00
|
|
|
import XMonad.Hooks.ManageDocks (avoidStruts, docksEventHook, manageDocks, ToggleStruts(..))
|
2020-05-24 22:27:19 -04:00
|
|
|
import XMonad.Hooks.ManageHelpers (isFullscreen, doFullFloat)
|
2020-06-06 19:40:47 -04:00
|
|
|
import XMonad.Hooks.ServerMode
|
2019-01-15 16:27:01 -05:00
|
|
|
import XMonad.Hooks.SetWMName
|
2020-06-24 21:00:02 -04:00
|
|
|
import XMonad.Hooks.WorkspaceHistory
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2020-07-17 18:59:13 -04:00
|
|
|
-- Layouts
|
|
|
|
import XMonad.Layout.GridVariants (Grid(Grid))
|
|
|
|
import XMonad.Layout.SimplestFloat
|
|
|
|
import XMonad.Layout.Spiral
|
|
|
|
import XMonad.Layout.ResizableTile
|
|
|
|
import XMonad.Layout.Tabbed
|
|
|
|
import XMonad.Layout.ThreeColumns
|
|
|
|
|
|
|
|
-- Layouts modifiers
|
|
|
|
import XMonad.Layout.LayoutModifier
|
|
|
|
import XMonad.Layout.LimitWindows (limitWindows, increaseLimit, decreaseLimit)
|
|
|
|
import XMonad.Layout.Magnifier
|
|
|
|
import XMonad.Layout.MultiToggle (mkToggle, single, EOT(EOT), (??))
|
|
|
|
import XMonad.Layout.MultiToggle.Instances (StdTransformers(NBFULL, MIRROR, NOBORDERS))
|
|
|
|
import XMonad.Layout.NoBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
import XMonad.Layout.Renamed
|
2020-07-17 18:59:13 -04:00
|
|
|
import XMonad.Layout.ShowWName
|
2020-11-12 17:57:50 -05:00
|
|
|
import XMonad.Layout.Simplest
|
2020-07-17 18:59:13 -04:00
|
|
|
import XMonad.Layout.Spacing
|
2020-11-12 17:57:50 -05:00
|
|
|
import XMonad.Layout.SubLayouts
|
|
|
|
import XMonad.Layout.WindowNavigation
|
2020-07-17 18:59:13 -04:00
|
|
|
import XMonad.Layout.WindowArranger (windowArrange, WindowArrangerMsg(..))
|
|
|
|
import qualified XMonad.Layout.ToggleLayouts as T (toggleLayouts, ToggleLayout(Toggle))
|
|
|
|
import qualified XMonad.Layout.MultiToggle as MT (Toggle(..))
|
|
|
|
|
2020-10-23 21:39:58 -04:00
|
|
|
-- Utilities
|
2021-04-12 19:56:03 -04:00
|
|
|
import XMonad.Util.Dmenu
|
2020-06-15 21:47:50 -04:00
|
|
|
import XMonad.Util.EZConfig (additionalKeysP)
|
|
|
|
import XMonad.Util.NamedScratchpad
|
|
|
|
import XMonad.Util.Run (runProcessWithInput, safeSpawn, spawnPipe)
|
|
|
|
import XMonad.Util.SpawnOnce
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2020-07-17 18:59:13 -04:00
|
|
|
myFont :: String
|
2020-12-15 18:16:29 -05:00
|
|
|
myFont = "xft:SauceCodePro Nerd Font Mono:regular:size=9:antialias=true:hinting=true"
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2021-02-26 01:10:02 -05:00
|
|
|
myEmojiFont :: String
|
|
|
|
myEmojiFont = "xft:JoyPixels:regular:size=9:antialias=true:hinting=true"
|
|
|
|
|
2020-07-17 18:59:13 -04:00
|
|
|
myModMask :: KeyMask
|
2021-04-14 00:56:09 -04:00
|
|
|
myModMask = mod4Mask -- Sets modkey to super/windows key
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
myTerminal :: String
|
2021-04-14 00:56:09 -04:00
|
|
|
myTerminal = "alacritty" -- Sets default terminal
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
myBrowser :: String
|
2021-04-14 00:56:09 -04:00
|
|
|
myBrowser = "qutebrowser " -- Sets qutebrowser as browser
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
myEditor :: String
|
2021-04-14 00:56:09 -04:00
|
|
|
myEditor = "emacsclient -c -a emacs " -- Sets emacs as editor
|
|
|
|
-- myEditor = myTerminal ++ " -e vim " -- Sets vim as editor
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
myBorderWidth :: Dimension
|
2021-04-14 00:56:09 -04:00
|
|
|
myBorderWidth = 2 -- Sets border width for windows
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
myNormColor :: String
|
2021-04-14 00:56:09 -04:00
|
|
|
myNormColor = "#282c34" -- Border color of normal windows
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
myFocusColor :: String
|
2021-04-14 00:56:09 -04:00
|
|
|
myFocusColor = "#46d9ff" -- Border color of focused windows
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
altMask :: KeyMask
|
2021-04-14 00:56:09 -04:00
|
|
|
altMask = mod1Mask -- Setting this for use in xprompts
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
windowCount :: X (Maybe String)
|
|
|
|
windowCount = gets $ Just . show . length . W.integrate' . W.stack . W.workspace . W.current . windowset
|
|
|
|
|
2020-05-30 12:49:58 -04:00
|
|
|
myStartupHook :: X ()
|
2019-01-15 16:27:01 -05:00
|
|
|
myStartupHook = do
|
2020-12-21 16:01:47 -05:00
|
|
|
spawnOnce "lxsession &"
|
2020-06-24 21:00:02 -04:00
|
|
|
spawnOnce "nitrogen --restore &"
|
2021-04-04 11:43:40 -04:00
|
|
|
spawnOnce "picom &"
|
2020-05-16 00:04:18 -04:00
|
|
|
spawnOnce "nm-applet &"
|
|
|
|
spawnOnce "volumeicon &"
|
2020-09-29 17:28:27 -04:00
|
|
|
spawnOnce "trayer --edge top --align right --widthtype request --padding 6 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 --tint 0x282c34 --height 22 &"
|
2021-04-18 20:36:50 -04:00
|
|
|
spawnOnce "conky -c $HOME/.config/conky/chimera.conkyrc" -- emacs daemon for the emacsclient
|
2020-12-21 16:01:47 -05:00
|
|
|
spawnOnce "/usr/bin/emacs --daemon &" -- emacs daemon for the emacsclient
|
|
|
|
-- spawnOnce "kak -d -s mysession &" -- kakoune daemon for better performance
|
|
|
|
-- spawnOnce "urxvtd -q -o -f &" -- urxvt daemon for better performance
|
2019-01-15 16:27:01 -05:00
|
|
|
setWMName "LG3D"
|
|
|
|
|
2020-07-17 18:59:13 -04:00
|
|
|
myColorizer :: Window -> Bool -> X (String, String)
|
|
|
|
myColorizer = colorRangeFromClassName
|
2020-09-29 17:28:27 -04:00
|
|
|
(0x28,0x2c,0x34) -- lowest inactive bg
|
|
|
|
(0x28,0x2c,0x34) -- highest inactive bg
|
2020-07-17 18:59:13 -04:00
|
|
|
(0xc7,0x92,0xea) -- active bg
|
|
|
|
(0xc0,0xa7,0x9a) -- inactive fg
|
2020-09-29 17:28:27 -04:00
|
|
|
(0x28,0x2c,0x34) -- active fg
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
-- gridSelect menu layout
|
|
|
|
mygridConfig :: p -> GSConfig Window
|
|
|
|
mygridConfig colorizer = (buildDefaultGSConfig myColorizer)
|
|
|
|
{ gs_cellheight = 40
|
|
|
|
, gs_cellwidth = 200
|
|
|
|
, gs_cellpadding = 6
|
|
|
|
, gs_originFractX = 0.5
|
|
|
|
, gs_originFractY = 0.5
|
|
|
|
, gs_font = myFont
|
|
|
|
}
|
|
|
|
|
|
|
|
spawnSelected' :: [(String, String)] -> X ()
|
|
|
|
spawnSelected' lst = gridselect conf lst >>= flip whenJust spawn
|
|
|
|
where conf = def
|
|
|
|
{ gs_cellheight = 40
|
|
|
|
, gs_cellwidth = 200
|
|
|
|
, gs_cellpadding = 6
|
|
|
|
, gs_originFractX = 0.5
|
|
|
|
, gs_originFractY = 0.5
|
|
|
|
, gs_font = myFont
|
|
|
|
}
|
|
|
|
|
|
|
|
myAppGrid = [ ("Audacity", "audacity")
|
|
|
|
, ("Deadbeef", "deadbeef")
|
|
|
|
, ("Emacs", "emacsclient -c -a emacs")
|
|
|
|
, ("Firefox", "firefox")
|
|
|
|
, ("Geany", "geany")
|
|
|
|
, ("Geary", "geary")
|
|
|
|
, ("Gimp", "gimp")
|
|
|
|
, ("Kdenlive", "kdenlive")
|
|
|
|
, ("LibreOffice Impress", "loimpress")
|
|
|
|
, ("LibreOffice Writer", "lowriter")
|
|
|
|
, ("OBS", "obs")
|
|
|
|
, ("PCManFM", "pcmanfm")
|
|
|
|
]
|
|
|
|
|
|
|
|
myScratchPads :: [NamedScratchpad]
|
|
|
|
myScratchPads = [ NS "terminal" spawnTerm findTerm manageTerm
|
|
|
|
, NS "mocp" spawnMocp findMocp manageMocp
|
|
|
|
]
|
|
|
|
where
|
2021-04-14 00:56:09 -04:00
|
|
|
spawnTerm = myTerminal ++ " -t scratchpad"
|
|
|
|
findTerm = title =? "scratchpad"
|
2020-07-17 18:59:13 -04:00
|
|
|
manageTerm = customFloating $ W.RationalRect l t w h
|
|
|
|
where
|
|
|
|
h = 0.9
|
|
|
|
w = 0.9
|
|
|
|
t = 0.95 -h
|
|
|
|
l = 0.95 -w
|
2021-04-14 00:56:09 -04:00
|
|
|
spawnMocp = myTerminal ++ " -t mocp -e mocp"
|
|
|
|
findMocp = title =? "mocp"
|
2020-07-17 18:59:13 -04:00
|
|
|
manageMocp = customFloating $ W.RationalRect l t w h
|
|
|
|
where
|
|
|
|
h = 0.9
|
|
|
|
w = 0.9
|
|
|
|
t = 0.95 -h
|
|
|
|
l = 0.95 -w
|
|
|
|
|
2020-12-18 11:24:49 -05:00
|
|
|
--Makes setting the spacingRaw simpler to write. The spacingRaw module adds a configurable amount of space around windows.
|
2020-07-17 18:59:13 -04:00
|
|
|
mySpacing :: Integer -> l a -> XMonad.Layout.LayoutModifier.ModifiedLayout Spacing l a
|
|
|
|
mySpacing i = spacingRaw False (Border i i i i) True (Border i i i i) True
|
|
|
|
|
|
|
|
-- Below is a variation of the above except no borders are applied
|
|
|
|
-- if fewer than two windows. So a single window has no gaps.
|
|
|
|
mySpacing' :: Integer -> l a -> XMonad.Layout.LayoutModifier.ModifiedLayout Spacing l a
|
|
|
|
mySpacing' i = spacingRaw True (Border i i i i) True (Border i i i i) True
|
|
|
|
|
|
|
|
-- Defining a bunch of layouts, many that I don't use.
|
2020-12-18 11:24:49 -05:00
|
|
|
-- limitWindows n sets maximum number of windows displayed for layout.
|
|
|
|
-- mySpacing n sets the gap size around the windows.
|
2020-07-17 18:59:13 -04:00
|
|
|
tall = renamed [Replace "tall"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ limitWindows 12
|
|
|
|
$ mySpacing 8
|
|
|
|
$ ResizableTall 1 (3/100) (1/2) []
|
|
|
|
magnify = renamed [Replace "magnify"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ magnifier
|
|
|
|
$ limitWindows 12
|
|
|
|
$ mySpacing 8
|
|
|
|
$ ResizableTall 1 (3/100) (1/2) []
|
|
|
|
monocle = renamed [Replace "monocle"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ limitWindows 20 Full
|
|
|
|
floats = renamed [Replace "floats"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ limitWindows 20 simplestFloat
|
|
|
|
grid = renamed [Replace "grid"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ limitWindows 12
|
2021-01-17 18:15:26 -05:00
|
|
|
$ mySpacing 0
|
2020-07-17 18:59:13 -04:00
|
|
|
$ mkToggle (single MIRROR)
|
|
|
|
$ Grid (16/10)
|
|
|
|
spirals = renamed [Replace "spirals"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ mySpacing' 8
|
|
|
|
$ spiral (6/7)
|
|
|
|
threeCol = renamed [Replace "threeCol"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ limitWindows 7
|
|
|
|
$ ThreeCol 1 (3/100) (1/2)
|
|
|
|
threeRow = renamed [Replace "threeRow"]
|
2020-11-12 17:57:50 -05:00
|
|
|
$ windowNavigation
|
2021-04-14 01:26:46 -04:00
|
|
|
$ smartBorders
|
2020-11-12 17:57:50 -05:00
|
|
|
$ addTabs shrinkText myTabTheme
|
|
|
|
$ subLayout [] (smartBorders Simplest)
|
2020-07-17 18:59:13 -04:00
|
|
|
$ limitWindows 7
|
|
|
|
-- Mirror takes a layout and rotates it by 90 degrees.
|
|
|
|
-- So we are applying Mirror to the ThreeCol layout.
|
|
|
|
$ Mirror
|
|
|
|
$ ThreeCol 1 (3/100) (1/2)
|
|
|
|
tabs = renamed [Replace "tabs"]
|
|
|
|
-- I cannot add spacing to this layout because it will
|
|
|
|
-- add spacing between window and tabs which looks bad.
|
2020-11-12 17:57:50 -05:00
|
|
|
$ tabbed shrinkText myTabTheme
|
|
|
|
|
2020-12-18 11:24:49 -05:00
|
|
|
-- setting colors for tabs layout and tabs sublayout.
|
2020-11-12 17:57:50 -05:00
|
|
|
myTabTheme = def { fontName = myFont
|
|
|
|
, activeColor = "#46d9ff"
|
|
|
|
, inactiveColor = "#313846"
|
|
|
|
, activeBorderColor = "#46d9ff"
|
|
|
|
, inactiveBorderColor = "#282c34"
|
|
|
|
, activeTextColor = "#282c34"
|
|
|
|
, inactiveTextColor = "#d0d0d0"
|
|
|
|
}
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
-- Theme for showWName which prints current workspace when you change workspaces.
|
|
|
|
myShowWNameTheme :: SWNConfig
|
|
|
|
myShowWNameTheme = def
|
2020-11-12 17:57:50 -05:00
|
|
|
{ swn_font = "xft:Ubuntu:bold:size=60"
|
2020-07-17 18:59:13 -04:00
|
|
|
, swn_fade = 1.0
|
2020-11-12 17:57:50 -05:00
|
|
|
, swn_bgcolor = "#1c1f24"
|
|
|
|
, swn_color = "#ffffff"
|
2020-07-17 18:59:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
-- The layout hook
|
2020-11-12 17:57:50 -05:00
|
|
|
myLayoutHook = avoidStruts $ mouseResize $ windowArrange $ T.toggleLayouts floats
|
|
|
|
$ mkToggle (NBFULL ?? NOBORDERS ?? EOT) myDefaultLayout
|
2020-07-17 18:59:13 -04:00
|
|
|
where
|
|
|
|
myDefaultLayout = tall
|
|
|
|
||| magnify
|
|
|
|
||| noBorders monocle
|
|
|
|
||| floats
|
|
|
|
||| noBorders tabs
|
2020-11-12 17:57:50 -05:00
|
|
|
||| grid
|
|
|
|
||| spirals
|
|
|
|
||| threeCol
|
|
|
|
||| threeRow
|
|
|
|
|
|
|
|
-- myWorkspaces = [" 1 ", " 2 ", " 3 ", " 4 ", " 5 ", " 6 ", " 7 ", " 8 ", " 9 "]
|
2021-04-14 00:56:09 -04:00
|
|
|
myWorkspaces = [" dev ", " www ", " sys ", " doc ", " vbox ", " chat ", " mus ", " vid ", " gfx "] -- ++ ["NSP"]
|
2021-02-26 01:10:02 -05:00
|
|
|
myWorkspaceIndices = M.fromList $ zipWith (,) myWorkspaces [1..] -- (,) == \x y -> (x,y)
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2021-02-26 01:10:02 -05:00
|
|
|
clickable ws = "<action=xdotool key super+"++show i++">"++ws++"</action>"
|
|
|
|
where i = fromJust $ M.lookup ws myWorkspaceIndices
|
2020-07-04 19:25:00 -04:00
|
|
|
|
2020-06-12 15:00:09 -04:00
|
|
|
myManageHook :: XMonad.Query (Data.Monoid.Endo WindowSet)
|
2019-02-25 00:28:46 -05:00
|
|
|
myManageHook = composeAll
|
2020-05-22 11:50:18 -04:00
|
|
|
-- using 'doShift ( myWorkspaces !! 7)' sends program to workspace 8!
|
2020-11-12 17:57:50 -05:00
|
|
|
-- I'm doing it this way because otherwise I would have to write out the full
|
2021-04-18 20:36:50 -04:00
|
|
|
-- name of my workspaces and the names would be very long if using clickable workspaces.
|
2020-11-12 17:57:50 -05:00
|
|
|
[ title =? "Mozilla Firefox" --> doShift ( myWorkspaces !! 1 )
|
2020-07-04 12:36:50 -04:00
|
|
|
, className =? "mpv" --> doShift ( myWorkspaces !! 7 )
|
|
|
|
, className =? "Gimp" --> doShift ( myWorkspaces !! 8 )
|
2020-05-22 11:50:18 -04:00
|
|
|
, className =? "Gimp" --> doFloat
|
|
|
|
, title =? "Oracle VM VirtualBox Manager" --> doFloat
|
2020-07-04 12:36:50 -04:00
|
|
|
, className =? "VirtualBox Manager" --> doShift ( myWorkspaces !! 4 )
|
2020-05-22 11:50:18 -04:00
|
|
|
, (className =? "firefox" <&&> resource =? "Dialog") --> doFloat -- Float Firefox Dialog
|
2019-02-25 23:08:15 -05:00
|
|
|
] <+> namedScratchpadManageHook myScratchPads
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2021-02-26 01:26:50 -05:00
|
|
|
myKeys :: [(String, X ())]
|
|
|
|
myKeys =
|
2020-07-17 18:59:13 -04:00
|
|
|
-- Xmonad
|
2021-04-12 19:56:03 -04:00
|
|
|
[ ("M-C-r", spawn "xmonad --recompile") -- Recompiles xmonad
|
|
|
|
, ("M-S-r", spawn "xmonad --restart") -- Restarts xmonad
|
2021-04-14 00:56:09 -04:00
|
|
|
, ("M-S-q", io exitSuccess) -- Quits xmonad
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2020-11-12 17:57:50 -05:00
|
|
|
-- Run Prompt
|
2021-04-14 00:56:09 -04:00
|
|
|
, ("M-S-<Return>", spawn "dmenu_run -i -p \"Run: \"") -- Dmenu
|
2020-11-12 17:57:50 -05:00
|
|
|
|
2020-12-17 02:05:21 -05:00
|
|
|
-- Other Prompts
|
2021-04-14 00:56:09 -04:00
|
|
|
, ("M-p c", spawn "/home/dt/dmscripts/dcolors") -- pick color from our scheme
|
|
|
|
, ("M-p e", spawn "/home/dt/dmscripts/dmconf") -- edit config files
|
|
|
|
, ("M-p i", spawn "/home/dt/dmscripts/dmscrot") -- screenshots (images)
|
|
|
|
, ("M-p k", spawn "/home/dt/dmscripts/dmkill") -- kill processes
|
|
|
|
, ("M-p m", spawn "/home/dt/dmscripts/dman") -- manpages
|
|
|
|
, ("M-p o", spawn "/home/dt/dmscripts/dmqute") -- open qutebrowser bookmarks, quickmarks and history
|
|
|
|
, ("M-p p", spawn "passmenu") -- passmenu
|
|
|
|
, ("M-p q", spawn "/home/dt/dmscripts/dmlogout") -- logout menu
|
|
|
|
, ("M-p r", spawn "/home/dt/dmscripts/dmred") -- reddio (a reddit viewer)
|
|
|
|
, ("M-p s", spawn "/home/dt/dmscripts/dmsearch") -- search various search engines
|
2020-12-17 02:05:21 -05:00
|
|
|
|
2020-11-12 17:57:50 -05:00
|
|
|
-- Useful programs to have a keybinding for launch
|
2021-03-20 14:06:31 -04:00
|
|
|
, ("M-<Return>", spawn (myTerminal))
|
2020-11-12 17:57:50 -05:00
|
|
|
, ("M-b", spawn (myBrowser ++ " www.youtube.com/c/DistroTube/"))
|
|
|
|
, ("M-M1-h", spawn (myTerminal ++ " -e htop"))
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2020-11-12 17:57:50 -05:00
|
|
|
-- Kill windows
|
2020-12-17 02:05:21 -05:00
|
|
|
, ("M-S-c", kill1) -- Kill the currently focused client
|
|
|
|
, ("M-S-a", killAll) -- Kill all windows on current workspace
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2020-11-12 17:57:50 -05:00
|
|
|
-- Workspaces
|
|
|
|
, ("M-.", nextScreen) -- Switch focus to next monitor
|
|
|
|
, ("M-,", prevScreen) -- Switch focus to prev monitor
|
|
|
|
, ("M-S-<KP_Add>", shiftTo Next nonNSP >> moveTo Next nonNSP) -- Shifts focused window to next ws
|
|
|
|
, ("M-S-<KP_Subtract>", shiftTo Prev nonNSP >> moveTo Prev nonNSP) -- Shifts focused window to prev ws
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
-- Floating windows
|
2020-11-12 17:57:50 -05:00
|
|
|
, ("M-f", sendMessage (T.Toggle "floats")) -- Toggles my 'floats' layout
|
|
|
|
, ("M-t", withFocused $ windows . W.sink) -- Push floating window back to tile
|
|
|
|
, ("M-S-t", sinkAll) -- Push ALL floating windows to tile
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2020-11-12 17:57:50 -05:00
|
|
|
-- Increase/decrease spacing (gaps)
|
|
|
|
, ("M-d", decWindowSpacing 4) -- Decrease window spacing
|
|
|
|
, ("M-i", incWindowSpacing 4) -- Increase window spacing
|
|
|
|
, ("M-S-d", decScreenSpacing 4) -- Decrease screen spacing
|
|
|
|
, ("M-S-i", incScreenSpacing 4) -- Increase screen spacing
|
|
|
|
|
|
|
|
-- Grid Select (CTR-g followed by a key)
|
2020-07-17 18:59:13 -04:00
|
|
|
, ("C-g g", spawnSelected' myAppGrid) -- grid select favorite apps
|
|
|
|
, ("C-g t", goToSelected $ mygridConfig myColorizer) -- goto selected window
|
|
|
|
, ("C-g b", bringSelected $ mygridConfig myColorizer) -- bring selected window
|
|
|
|
|
|
|
|
-- Windows navigation
|
2020-11-12 17:57:50 -05:00
|
|
|
, ("M-m", windows W.focusMaster) -- Move focus to the master window
|
|
|
|
, ("M-j", windows W.focusDown) -- Move focus to the next window
|
|
|
|
, ("M-k", windows W.focusUp) -- Move focus to the prev window
|
|
|
|
, ("M-S-m", windows W.swapMaster) -- Swap the focused window and the master window
|
|
|
|
, ("M-S-j", windows W.swapDown) -- Swap focused window with next window
|
|
|
|
, ("M-S-k", windows W.swapUp) -- Swap focused window with prev window
|
|
|
|
, ("M-<Backspace>", promote) -- Moves focused window to master, others maintain order
|
|
|
|
, ("M-S-<Tab>", rotSlavesDown) -- Rotate all windows except master and keep focus in place
|
|
|
|
, ("M-C-<Tab>", rotAllDown) -- Rotate all the windows in the current stack
|
|
|
|
|
|
|
|
-- Layouts
|
|
|
|
, ("M-<Tab>", sendMessage NextLayout) -- Switch to next layout
|
2020-07-17 18:59:13 -04:00
|
|
|
, ("M-C-M1-<Up>", sendMessage Arrange)
|
|
|
|
, ("M-C-M1-<Down>", sendMessage DeArrange)
|
2020-11-12 17:57:50 -05:00
|
|
|
, ("M-S-<Space>", sendMessage ToggleStruts) -- Toggles struts
|
|
|
|
, ("M-S-n", sendMessage $ MT.Toggle NOBORDERS) -- Toggles noborder
|
2021-04-14 02:41:02 -04:00
|
|
|
, ("M-<Space>", sendMessage (MT.Toggle NBFULL) >> sendMessage ToggleStruts) -- Toggles noborder/full
|
2020-11-12 17:57:50 -05:00
|
|
|
|
|
|
|
-- Increase/decrease windows in the master pane or the stack
|
|
|
|
, ("M-S-<Up>", sendMessage (IncMasterN 1)) -- Increase number of clients in master pane
|
|
|
|
, ("M-S-<Down>", sendMessage (IncMasterN (-1))) -- Decrease number of clients in master pane
|
|
|
|
, ("M-C-<Up>", increaseLimit) -- Increase number of windows
|
|
|
|
, ("M-C-<Down>", decreaseLimit) -- Decrease number of windows
|
|
|
|
|
|
|
|
-- Window resizing
|
|
|
|
, ("M-h", sendMessage Shrink) -- Shrink horiz window width
|
|
|
|
, ("M-l", sendMessage Expand) -- Expand horiz window width
|
|
|
|
, ("M-M1-j", sendMessage MirrorShrink) -- Shrink vert window width
|
|
|
|
, ("M-M1-k", sendMessage MirrorExpand) -- Exoand vert window width
|
|
|
|
|
|
|
|
-- Sublayouts
|
|
|
|
-- This is used to push windows to tabbed sublayouts, or pull them out of it.
|
|
|
|
, ("M-C-h", sendMessage $ pullGroup L)
|
|
|
|
, ("M-C-l", sendMessage $ pullGroup R)
|
|
|
|
, ("M-C-k", sendMessage $ pullGroup U)
|
|
|
|
, ("M-C-j", sendMessage $ pullGroup D)
|
|
|
|
, ("M-C-m", withFocused (sendMessage . MergeAll))
|
|
|
|
, ("M-C-u", withFocused (sendMessage . UnMerge))
|
|
|
|
, ("M-C-/", withFocused (sendMessage . UnMergeAll))
|
|
|
|
, ("M-C-.", onGroup W.focusUp') -- Switch focus to next tab
|
|
|
|
, ("M-C-,", onGroup W.focusDown') -- Switch focus to prev tab
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
-- Scratchpads
|
|
|
|
, ("M-C-<Return>", namedScratchpadAction myScratchPads "terminal")
|
|
|
|
, ("M-C-c", namedScratchpadAction myScratchPads "mocp")
|
|
|
|
|
2020-11-12 17:57:50 -05:00
|
|
|
-- Controls for mocp music player (SUPER-u followed by a key)
|
2020-07-17 18:59:13 -04:00
|
|
|
, ("M-u p", spawn "mocp --play")
|
|
|
|
, ("M-u l", spawn "mocp --next")
|
|
|
|
, ("M-u h", spawn "mocp --previous")
|
|
|
|
, ("M-u <Space>", spawn "mocp --toggle-pause")
|
|
|
|
|
|
|
|
-- Emacs (CTRL-e followed by a key)
|
2020-10-23 21:39:58 -04:00
|
|
|
, ("C-e e", spawn "emacsclient -c -a 'emacs'") -- start emacs
|
|
|
|
, ("C-e b", spawn "emacsclient -c -a 'emacs' --eval '(ibuffer)'") -- list emacs buffers
|
|
|
|
, ("C-e d", spawn "emacsclient -c -a 'emacs' --eval '(dired nil)'") -- dired emacs file manager
|
|
|
|
, ("C-e i", spawn "emacsclient -c -a 'emacs' --eval '(erc)'") -- erc emacs irc client
|
|
|
|
, ("C-e m", spawn "emacsclient -c -a 'emacs' --eval '(mu4e)'") -- mu4e emacs email client
|
|
|
|
, ("C-e n", spawn "emacsclient -c -a 'emacs' --eval '(elfeed)'") -- elfeed emacs rss client
|
|
|
|
, ("C-e s", spawn "emacsclient -c -a 'emacs' --eval '(eshell)'") -- eshell within emacs
|
|
|
|
, ("C-e t", spawn "emacsclient -c -a 'emacs' --eval '(mastodon)'") -- mastodon within emacs
|
2021-04-16 19:17:35 -04:00
|
|
|
, ("C-e v", spawn "emacsclient -c -a 'emacs' --eval '(vterm nil)'") -- vterm within emacs
|
|
|
|
, ("C-e w", spawn "emacsclient -c -a 'emacs' --eval '(eww \"distrotube.com\")'") -- vterm within emacs
|
2020-07-17 18:59:13 -04:00
|
|
|
-- emms is an emacs audio player. I set it to auto start playing in a specific directory.
|
2020-10-23 21:39:58 -04:00
|
|
|
, ("C-e a", spawn "emacsclient -c -a 'emacs' --eval '(emms)' --eval '(emms-play-directory-tree \"~/Music/Non-Classical/70s-80s/\")'")
|
2020-07-17 18:59:13 -04:00
|
|
|
|
|
|
|
-- Multimedia Keys
|
2020-11-12 17:57:50 -05:00
|
|
|
, ("<XF86AudioPlay>", spawn (myTerminal ++ "mocp --play"))
|
|
|
|
, ("<XF86AudioPrev>", spawn (myTerminal ++ "mocp --previous"))
|
|
|
|
, ("<XF86AudioNext>", spawn (myTerminal ++ "mocp --next"))
|
2020-12-17 02:05:21 -05:00
|
|
|
, ("<XF86AudioMute>", spawn "amixer set Master toggle")
|
2020-07-17 18:59:13 -04:00
|
|
|
, ("<XF86AudioLowerVolume>", spawn "amixer set Master 5%- unmute")
|
|
|
|
, ("<XF86AudioRaiseVolume>", spawn "amixer set Master 5%+ unmute")
|
|
|
|
, ("<XF86HomePage>", spawn "firefox")
|
2020-11-12 17:57:50 -05:00
|
|
|
, ("<XF86Search>", safeSpawn "firefox" ["https://www.duckduckgo.com/"])
|
2020-12-17 02:05:21 -05:00
|
|
|
, ("<XF86Mail>", runOrRaise "thunderbird" (resource =? "thunderbird"))
|
|
|
|
, ("<XF86Calculator>", runOrRaise "qalculate-gtk" (resource =? "qalculate-gtk"))
|
2020-07-17 18:59:13 -04:00
|
|
|
, ("<XF86Eject>", spawn "toggleeject")
|
|
|
|
, ("<Print>", spawn "scrotd 0")
|
|
|
|
]
|
2020-11-12 17:57:50 -05:00
|
|
|
-- The following lines are needed for named scratchpads.
|
2021-04-14 00:56:09 -04:00
|
|
|
where nonNSP = WSIs (return (\ws -> W.tag ws /= "NSP"))
|
|
|
|
nonEmptyNonNSP = WSIs (return (\ws -> isJust (W.stack ws) && W.tag ws /= "NSP"))
|
2020-07-17 18:59:13 -04:00
|
|
|
|
2020-05-24 22:27:19 -04:00
|
|
|
main :: IO ()
|
2020-05-20 18:29:47 -04:00
|
|
|
main = do
|
|
|
|
-- Launching three instances of xmobar on their monitors.
|
2020-12-18 11:24:49 -05:00
|
|
|
xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/xmobarrc0"
|
|
|
|
xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/xmobarrc2"
|
|
|
|
xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/xmobarrc1"
|
2020-05-20 18:29:47 -04:00
|
|
|
-- the xmonad, ya know...what the WM is named after!
|
2020-06-06 19:40:47 -04:00
|
|
|
xmonad $ ewmh def
|
|
|
|
{ manageHook = ( isFullscreen --> doFullFloat ) <+> myManageHook <+> manageDocks
|
|
|
|
-- Run xmonad commands from command line with "xmonadctl command". Commands include:
|
|
|
|
-- shrink, expand, next-layout, default-layout, restart-wm, xterm, kill, refresh, run,
|
2020-06-24 21:00:02 -04:00
|
|
|
-- focus-up, focus-down, swap-up, swap-down, swap-master, sink, quit-wm. You can run
|
2020-06-06 19:40:47 -04:00
|
|
|
-- "xmonadctl 0" to generate full list of commands written to ~/.xsession-errors.
|
2020-11-19 22:01:05 -05:00
|
|
|
-- To compile xmonadctl: ghc -dynamic xmonadctl.hs
|
2020-06-24 21:00:02 -04:00
|
|
|
, handleEventHook = serverModeEventHookCmd
|
|
|
|
<+> serverModeEventHook
|
2020-06-06 19:40:47 -04:00
|
|
|
<+> serverModeEventHookF "XMONAD_PRINT" (io . putStrLn)
|
|
|
|
<+> docksEventHook
|
2021-04-14 02:50:03 -04:00
|
|
|
-- <+> fullscreenEventHook -- this does NOT work right if using multi-monitors!
|
2020-05-21 22:39:36 -04:00
|
|
|
, modMask = myModMask
|
|
|
|
, terminal = myTerminal
|
|
|
|
, startupHook = myStartupHook
|
2020-11-12 17:57:50 -05:00
|
|
|
, layoutHook = showWName' myShowWNameTheme $ myLayoutHook
|
2020-07-04 12:36:50 -04:00
|
|
|
, workspaces = myWorkspaces
|
2020-05-21 22:39:36 -04:00
|
|
|
, borderWidth = myBorderWidth
|
2020-05-22 01:14:58 -04:00
|
|
|
, normalBorderColor = myNormColor
|
|
|
|
, focusedBorderColor = myFocusColor
|
2021-04-14 00:56:09 -04:00
|
|
|
, logHook = dynamicLogWithPP $ namedScratchpadFilterOutWorkspacePP $ xmobarPP
|
2020-06-24 21:00:02 -04:00
|
|
|
{ ppOutput = \x -> hPutStrLn xmproc0 x >> hPutStrLn xmproc1 x >> hPutStrLn xmproc2 x
|
2021-02-26 01:10:02 -05:00
|
|
|
, ppCurrent = xmobarColor "#98be65" "" . wrap "[" "]" -- Current workspace in xmobar
|
|
|
|
, ppVisible = xmobarColor "#98be65" "" . clickable -- Visible but not current workspace
|
|
|
|
, ppHidden = xmobarColor "#82AAFF" "" . wrap "*" "" . clickable -- Hidden workspaces in xmobar
|
|
|
|
, ppHiddenNoWindows = xmobarColor "#c792ea" "" . clickable -- Hidden workspaces (no windows)
|
|
|
|
, ppTitle = xmobarColor "#b3afc2" "" . shorten 60 -- Title of active window in xmobar
|
|
|
|
, ppSep = "<fc=#666666> <fn=1>|</fn> </fc>" -- Separators in xmobar
|
|
|
|
, ppUrgent = xmobarColor "#C45500" "" . wrap "!" "!" -- Urgent workspace
|
|
|
|
, ppExtras = [windowCount] -- # of windows current workspace
|
2020-06-24 21:00:02 -04:00
|
|
|
, ppOrder = \(ws:l:t:ex) -> [ws,l]++ex++[t]
|
|
|
|
}
|
2021-02-26 01:26:50 -05:00
|
|
|
} `additionalKeysP` myKeys
|