2020-06-24 21:00:02 -04:00
|
|
|
-- Xmonad is a dynamically tiling X11 window manager that is written and
|
|
|
|
-- configured in Haskell. Official documentation: https://xmonad.org
|
|
|
|
|
|
|
|
-- This is the xmonad configuration of Derek Taylor (DistroTube)
|
2020-05-22 01:14:58 -04:00
|
|
|
-- My YouTube: http://www.youtube.com/c/DistroTube
|
|
|
|
-- My GitLab: http://www.gitlab.com/dwt1/
|
2020-06-24 21:00:02 -04:00
|
|
|
|
|
|
|
-- This config is massively long. It is purposely bloated with a ton of
|
|
|
|
-- examples of what you can do with xmonad. It is written more as a
|
|
|
|
-- study guide rather than a config that you should download and use.
|
2019-02-25 21:18:34 -05:00
|
|
|
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-22 01:14:58 -04:00
|
|
|
-- IMPORTS
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2019-01-15 16:27:01 -05:00
|
|
|
-- Base
|
|
|
|
import XMonad
|
2020-06-25 00:02:45 -04:00
|
|
|
import System.IO (hPutStrLn)
|
2019-01-15 16:27:01 -05:00
|
|
|
import System.Exit (exitSuccess)
|
|
|
|
import qualified XMonad.StackSet as W
|
|
|
|
|
2020-06-15 21:47:50 -04:00
|
|
|
-- Actions
|
|
|
|
import XMonad.Actions.CopyWindow (kill1, killAllOtherCopies)
|
|
|
|
import XMonad.Actions.CycleWS (moveTo, shiftTo, WSType(..), nextScreen, prevScreen)
|
|
|
|
import XMonad.Actions.GridSelect
|
|
|
|
import XMonad.Actions.MouseResize
|
|
|
|
import XMonad.Actions.Promote
|
|
|
|
import XMonad.Actions.RotSlaves (rotSlavesDown, rotAllDown)
|
|
|
|
import qualified XMonad.Actions.TreeSelect as TS
|
|
|
|
import XMonad.Actions.WindowGo (runOrRaise)
|
|
|
|
import XMonad.Actions.WithAll (sinkAll, killAll)
|
|
|
|
import qualified XMonad.Actions.Search as S
|
2020-05-20 18:29:47 -04:00
|
|
|
|
|
|
|
-- Data
|
2020-05-27 14:02:54 -04:00
|
|
|
import Data.Char (isSpace)
|
2020-05-20 18:29:47 -04:00
|
|
|
import Data.Monoid
|
|
|
|
import Data.Maybe (isJust)
|
2020-06-15 21:47:50 -04:00
|
|
|
import Data.Tree
|
2020-06-24 21:00:02 -04:00
|
|
|
import qualified Data.Tuple.Extra as TE
|
2020-05-21 13:13:45 -04:00
|
|
|
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-24 21:00:02 -04:00
|
|
|
import XMonad.Hooks.FadeInactive
|
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-06-15 21:47:50 -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
|
2019-01-15 16:27:01 -05:00
|
|
|
|
|
|
|
-- Layouts modifiers
|
2020-05-30 12:49:58 -04:00
|
|
|
import XMonad.Layout.LayoutModifier
|
2019-01-15 16:27:01 -05:00
|
|
|
import XMonad.Layout.LimitWindows (limitWindows, increaseLimit, decreaseLimit)
|
2020-06-12 21:56:07 -04:00
|
|
|
import XMonad.Layout.Magnifier
|
|
|
|
import XMonad.Layout.MultiToggle (mkToggle, single, EOT(EOT), (??))
|
2019-01-15 16:27:01 -05:00
|
|
|
import XMonad.Layout.MultiToggle.Instances (StdTransformers(NBFULL, MIRROR, NOBORDERS))
|
2020-05-30 13:30:29 -04:00
|
|
|
import XMonad.Layout.NoBorders
|
|
|
|
import XMonad.Layout.Renamed (renamed, Rename(Replace))
|
2020-06-24 21:00:02 -04:00
|
|
|
import XMonad.Layout.ShowWName
|
2020-05-30 13:30:29 -04:00
|
|
|
import XMonad.Layout.Spacing
|
|
|
|
import XMonad.Layout.WindowArranger (windowArrange, WindowArrangerMsg(..))
|
2019-01-15 16:27:01 -05:00
|
|
|
import qualified XMonad.Layout.ToggleLayouts as T (toggleLayouts, ToggleLayout(Toggle))
|
2020-06-12 21:56:07 -04:00
|
|
|
import qualified XMonad.Layout.MultiToggle as MT (Toggle(..))
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2020-06-15 21:47:50 -04:00
|
|
|
-- Prompt
|
|
|
|
import XMonad.Prompt
|
|
|
|
import XMonad.Prompt.Input
|
2020-06-24 21:00:02 -04:00
|
|
|
import XMonad.Prompt.FuzzyMatch
|
2020-06-15 21:47:50 -04:00
|
|
|
import XMonad.Prompt.Man
|
|
|
|
import XMonad.Prompt.Pass
|
|
|
|
import XMonad.Prompt.Shell (shellPrompt)
|
|
|
|
import XMonad.Prompt.Ssh
|
|
|
|
import XMonad.Prompt.XMonad
|
|
|
|
import Control.Arrow (first)
|
|
|
|
|
|
|
|
-- Utilities
|
|
|
|
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
|
|
|
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-22 01:14:58 -04:00
|
|
|
-- VARIABLES
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-06-24 21:00:02 -04:00
|
|
|
-- It's nice to assign values to stuff that you will use more than once
|
|
|
|
-- in the config. Setting values for things like font, terminal and editor
|
|
|
|
-- means you only have to change the value here to make changes globally.
|
2020-06-15 21:47:50 -04:00
|
|
|
myFont :: String
|
2020-06-24 21:00:02 -04:00
|
|
|
myFont = "xft:Mononoki Nerd Font:bold:size=9"
|
2020-05-24 22:27:19 -04:00
|
|
|
|
|
|
|
myModMask :: KeyMask
|
|
|
|
myModMask = mod4Mask -- Sets modkey to super/windows key
|
|
|
|
|
2020-06-15 21:47:50 -04:00
|
|
|
myTerminal :: String
|
2020-05-24 22:27:19 -04:00
|
|
|
myTerminal = "alacritty" -- Sets default terminal
|
|
|
|
|
2020-06-24 21:00:02 -04:00
|
|
|
myBrowser :: String
|
2020-06-25 00:55:27 -04:00
|
|
|
myBrowser = myTerminal ++ " -e lynx " -- Sets lynx as browser for tree select
|
|
|
|
-- myBrowser = "firefox " -- Sets firefox as browser for tree select
|
2020-06-24 21:00:02 -04:00
|
|
|
|
|
|
|
myEditor :: String
|
2020-06-25 00:55:27 -04:00
|
|
|
myEditor = "emacsclient -c -a emacs " -- Sets emacs as editor for tree select
|
|
|
|
-- myEditor = myTerminal ++ " -e vim " -- Sets vim as editor for tree select
|
2020-06-24 21:00:02 -04:00
|
|
|
|
2020-05-24 22:27:19 -04:00
|
|
|
myBorderWidth :: Dimension
|
|
|
|
myBorderWidth = 2 -- Sets border width for windows
|
|
|
|
|
2020-06-15 21:47:50 -04:00
|
|
|
myNormColor :: String
|
2020-05-24 22:27:19 -04:00
|
|
|
myNormColor = "#292d3e" -- Border color of normal windows
|
|
|
|
|
2020-06-15 21:47:50 -04:00
|
|
|
myFocusColor :: String
|
2020-05-24 22:27:19 -04:00
|
|
|
myFocusColor = "#bbc5ff" -- Border color of focused windows
|
|
|
|
|
|
|
|
altMask :: KeyMask
|
|
|
|
altMask = mod1Mask -- Setting this for use in xprompts
|
|
|
|
|
|
|
|
windowCount :: X (Maybe String)
|
|
|
|
windowCount = gets $ Just . show . length . W.integrate' . W.stack . W.workspace . W.current . windowset
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-22 01:14:58 -04:00
|
|
|
-- AUTOSTART
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-30 12:49:58 -04:00
|
|
|
myStartupHook :: X ()
|
2019-01-15 16:27:01 -05:00
|
|
|
myStartupHook = do
|
2020-06-24 21:00:02 -04:00
|
|
|
spawnOnce "nitrogen --restore &"
|
2020-05-16 00:04:18 -04:00
|
|
|
spawnOnce "picom &"
|
|
|
|
spawnOnce "nm-applet &"
|
|
|
|
spawnOnce "volumeicon &"
|
2020-05-16 22:24:02 -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 0x292d3e --height 18 &"
|
2020-06-19 23:43:40 -04:00
|
|
|
spawnOnce "/usr/bin/emacs --daemon &"
|
2020-06-12 15:00:09 -04:00
|
|
|
-- spawnOnce "kak -d -s mysession &"
|
2019-01-15 16:27:01 -05:00
|
|
|
setWMName "LG3D"
|
|
|
|
|
2020-02-17 01:07:06 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-22 01:14:58 -04:00
|
|
|
-- GRID SELECT
|
2020-02-17 01:07:06 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-06-24 21:00:02 -04:00
|
|
|
-- GridSelect displays items (programs, open windows, etc.) in a 2D grid
|
|
|
|
-- and lets the user select from it with the cursor/hjkl keys or the mouse.
|
2020-02-17 01:07:06 -05:00
|
|
|
myColorizer :: Window -> Bool -> X (String, String)
|
|
|
|
myColorizer = colorRangeFromClassName
|
2020-06-12 15:00:09 -04:00
|
|
|
(0x29,0x2d,0x3e) -- lowest inactive bg
|
|
|
|
(0x29,0x2d,0x3e) -- highest inactive bg
|
|
|
|
(0xc7,0x92,0xea) -- active bg
|
2020-02-17 01:07:06 -05:00
|
|
|
(0xc0,0xa7,0x9a) -- inactive fg
|
2020-06-12 15:00:09 -04:00
|
|
|
(0x29,0x2d,0x3e) -- active fg
|
2020-06-24 21:00:02 -04:00
|
|
|
|
2020-02-17 01:07:06 -05:00
|
|
|
-- gridSelect menu layout
|
2020-05-24 22:27:19 -04:00
|
|
|
mygridConfig :: p -> GSConfig Window
|
2020-02-17 01:07:06 -05:00
|
|
|
mygridConfig colorizer = (buildDefaultGSConfig myColorizer)
|
2020-06-12 15:00:09 -04:00
|
|
|
{ gs_cellheight = 40
|
2020-06-24 21:00:02 -04:00
|
|
|
, gs_cellwidth = 200
|
|
|
|
, gs_cellpadding = 6
|
2020-02-17 01:07:06 -05:00
|
|
|
, gs_originFractX = 0.5
|
|
|
|
, gs_originFractY = 0.5
|
|
|
|
, gs_font = myFont
|
|
|
|
}
|
2020-06-06 19:40:47 -04:00
|
|
|
|
2020-02-17 01:07:06 -05:00
|
|
|
spawnSelected' :: [(String, String)] -> X ()
|
|
|
|
spawnSelected' lst = gridselect conf lst >>= flip whenJust spawn
|
2020-05-24 22:27:19 -04:00
|
|
|
where conf = def
|
2020-06-24 21:00:02 -04:00
|
|
|
{ gs_cellheight = 40
|
|
|
|
, gs_cellwidth = 200
|
|
|
|
, gs_cellpadding = 6
|
|
|
|
, gs_originFractX = 0.5
|
|
|
|
, gs_originFractY = 0.5
|
|
|
|
, gs_font = myFont
|
|
|
|
}
|
|
|
|
|
|
|
|
-- The lists below are actually 3-tuples for use with gridSelect and treeSelect.
|
|
|
|
-- TreeSelect uses all three values in the 3-tuples but GridSelect only needs first
|
|
|
|
-- two values in each list (see myAppGrid, myBookmarkGrid and myConfigGrid below).
|
2020-06-25 00:02:45 -04:00
|
|
|
myApplications :: [(String, String, String)]
|
2020-06-24 21:00:02 -04:00
|
|
|
myApplications = [ ("Audacity", "audacity", "Graphical cross-platform audio eidtor")
|
2020-06-25 00:02:45 -04:00
|
|
|
, ("Deadbeef", "deadbeef", "Lightweight GUI audio player")
|
|
|
|
, ("Emacs", "emacs", "Much more than a text editor")
|
|
|
|
, ("Firefox", "firefox", "The famous open source web browser")
|
|
|
|
, ("Geany", "geany", "A nice text editor")
|
|
|
|
, ("Geary", "geary", "Email client that is attractive")
|
|
|
|
, ("Gimp", "gimp", "Open source alternative to Photoshop")
|
|
|
|
, ("Kdenlive", "kdenlive", "A great open source video editor")
|
|
|
|
, ("LibreOffice Impress", "loimpress", "For making presentations")
|
|
|
|
, ("LibreOffice Writer", "lowriter", "A fully featured word processor")
|
|
|
|
, ("OBS", "obs", "Open broadcaster software")
|
|
|
|
, ("PCManFM", "pcmanfm", "Lightweight graphical file manager")
|
|
|
|
, ("Simple Terminal", "st", "Suckless simple terminal")
|
|
|
|
, ("Steam", "steam", "Proprietary gaming platform")
|
|
|
|
, ("Surf Browser", "surf suckless.org", "Suckless surf web browser")
|
|
|
|
, ("Xonotic", "xonotic-glx", "A fast-paced first person shooter")
|
|
|
|
]
|
|
|
|
|
|
|
|
myBookmarks :: [(String, String, String)]
|
2020-06-24 21:00:02 -04:00
|
|
|
myBookmarks = [ ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
2020-06-25 00:02:45 -04:00
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
, ("Site Name", myBrowser ++ "https://www.distrotube.com", "Official website for DistroTube")
|
|
|
|
]
|
2020-06-12 15:00:09 -04:00
|
|
|
|
2020-06-25 00:02:45 -04:00
|
|
|
myConfigs :: [(String, String, String)]
|
2020-06-24 21:00:02 -04:00
|
|
|
myConfigs = [ ("bashrc", myEditor ++ "/home/dt/.bashrc", "the bourne again shell")
|
|
|
|
, ("doom emacs config.el", myEditor ++ "/home/dt/.doom.d/config.el", "doom emacs config")
|
|
|
|
, ("doom emacs init.el", myEditor ++ "/home/dt/.doom.d/init.el", "doom emacs init")
|
|
|
|
, ("dwm", myEditor ++ "/home/dt/dwm-distrotube/config.h", "dwm config file")
|
|
|
|
, ("qtile", myEditor ++ "/home/dt/.config/qtile/config.py", "qtile config")
|
|
|
|
, ("xmonad.hs", myEditor ++ "/home/dt/.xmonad/xmonad.hs", "xmonad config")
|
|
|
|
, ("zshrc", myEditor ++ "/home/dt/.zshrc", "config for the z shell")
|
|
|
|
]
|
|
|
|
|
2020-06-27 16:24:59 -04:00
|
|
|
-- Let's take myApplications, myBookmarks and myConfigs and take only
|
|
|
|
-- the first two values from those 3-tuples (for GridSelect).
|
2020-06-25 00:02:45 -04:00
|
|
|
myAppGrid :: [(String, String)]
|
2020-06-27 16:24:59 -04:00
|
|
|
myAppGrid = [ (a,b) | (a,b,c) <- xs]
|
2020-06-24 21:00:02 -04:00
|
|
|
where xs = myApplications
|
|
|
|
|
2020-06-25 00:02:45 -04:00
|
|
|
myBookmarkGrid :: [(String, String)]
|
2020-06-27 16:24:59 -04:00
|
|
|
myBookmarkGrid = [ (a,b) | (a,b,c) <- xs]
|
2020-06-24 21:00:02 -04:00
|
|
|
where xs = myBookmarks
|
|
|
|
|
2020-06-25 00:02:45 -04:00
|
|
|
myConfigGrid :: [(String, String)]
|
2020-06-27 16:24:59 -04:00
|
|
|
myConfigGrid = [ (a,b) | (a,b,c) <- xs]
|
2020-06-24 21:00:02 -04:00
|
|
|
where xs = myConfigs
|
|
|
|
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- TREE SELECT
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- TreeSelect displays your workspaces or actions in a Tree-like format.
|
|
|
|
-- You can select desired workspace/action with the cursor or hjkl keys.
|
|
|
|
|
|
|
|
treeselectAction :: TS.TSConfig (X ()) -> X ()
|
|
|
|
treeselectAction a = TS.treeselectAction a
|
|
|
|
[ Node (TS.TSNode "applications" "a list of programs I use often" (return ()))
|
|
|
|
[Node (TS.TSNode (TE.fst3 $ myApplications !! n)
|
|
|
|
(TE.thd3 $ myApplications !! n)
|
|
|
|
(spawn $ TE.snd3 $ myApplications !! n)
|
|
|
|
) [] | n <- [0..(length myApplications - 1)]
|
|
|
|
]
|
|
|
|
, Node (TS.TSNode "bookmarks" "a list of web bookmarks" (return ()))
|
|
|
|
[Node (TS.TSNode(TE.fst3 $ myBookmarks !! n)
|
|
|
|
(TE.thd3 $ myBookmarks !! n)
|
|
|
|
(spawn $ TE.snd3 $ myBookmarks !! n)
|
|
|
|
) [] | n <- [0..(length myBookmarks - 1)]
|
|
|
|
]
|
|
|
|
, Node (TS.TSNode "config files" "config files that edit often" (return ()))
|
|
|
|
[Node (TS.TSNode (TE.fst3 $ myConfigs !! n)
|
|
|
|
(TE.thd3 $ myConfigs !! n)
|
|
|
|
(spawn $ TE.snd3 $ myConfigs !! n)
|
|
|
|
) [] | n <- [0..(length myConfigs - 1)]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2020-06-25 00:02:45 -04:00
|
|
|
-- Configuration options for treeSelect
|
2020-06-24 21:00:02 -04:00
|
|
|
tsDefaultConfig :: TS.TSConfig a
|
|
|
|
tsDefaultConfig = TS.TSConfig { TS.ts_hidechildren = True
|
|
|
|
, TS.ts_background = 0xdd292d3e
|
|
|
|
, TS.ts_font = myFont
|
|
|
|
, TS.ts_node = (0xffd0d0d0, 0xff202331)
|
|
|
|
, TS.ts_nodealt = (0xffd0d0d0, 0xff292d3e)
|
|
|
|
, TS.ts_highlight = (0xffffffff, 0xff755999)
|
|
|
|
, TS.ts_extra = 0xffd0d0d0
|
|
|
|
, TS.ts_node_width = 200
|
|
|
|
, TS.ts_node_height = 20
|
|
|
|
, TS.ts_originX = 0
|
|
|
|
, TS.ts_originY = 0
|
|
|
|
, TS.ts_indent = 80
|
|
|
|
, TS.ts_navigate = myTreeNavigation
|
|
|
|
}
|
|
|
|
|
2020-06-25 00:55:27 -04:00
|
|
|
-- Keybindings for treeSelect menus. Use h-j-k-l to navigate.
|
|
|
|
-- Use 'o' and 'i' to move forward/back in the workspace history.
|
|
|
|
-- Single KEY's are for top-level nodes. SUPER+KEY are for the
|
|
|
|
-- second-level nodes. SUPER+ALT+KEY are third-level nodes.
|
2020-06-24 21:00:02 -04:00
|
|
|
myTreeNavigation = M.fromList
|
2020-06-25 00:55:27 -04:00
|
|
|
[ ((0, xK_Escape), TS.cancel)
|
|
|
|
, ((0, xK_Return), TS.select)
|
|
|
|
, ((0, xK_space), TS.select)
|
|
|
|
, ((0, xK_Up), TS.movePrev)
|
|
|
|
, ((0, xK_Down), TS.moveNext)
|
|
|
|
, ((0, xK_Left), TS.moveParent)
|
|
|
|
, ((0, xK_Right), TS.moveChild)
|
|
|
|
, ((0, xK_k), TS.movePrev)
|
|
|
|
, ((0, xK_j), TS.moveNext)
|
|
|
|
, ((0, xK_h), TS.moveParent)
|
|
|
|
, ((0, xK_l), TS.moveChild)
|
|
|
|
, ((0, xK_o), TS.moveHistBack)
|
|
|
|
, ((0, xK_i), TS.moveHistForward)
|
|
|
|
, ((0, xK_d), TS.moveTo ["dev"])
|
|
|
|
, ((0, xK_g), TS.moveTo ["graphics"])
|
|
|
|
, ((0, xK_m), TS.moveTo ["music"])
|
|
|
|
, ((0, xK_v), TS.moveTo ["video"])
|
|
|
|
, ((0, xK_w), TS.moveTo ["web"])
|
|
|
|
, ((mod4Mask, xK_b), TS.moveTo ["web", "browser"])
|
|
|
|
, ((mod4Mask, xK_c), TS.moveTo ["web", "chat"])
|
|
|
|
, ((mod4Mask, xK_m), TS.moveTo ["web", "email"])
|
|
|
|
, ((mod4Mask, xK_r), TS.moveTo ["web", "rss"])
|
|
|
|
, ((mod4Mask, xK_w), TS.moveTo ["web", "web conference"])
|
|
|
|
, ((mod4Mask, xK_d), TS.moveTo ["dev", "docs"])
|
|
|
|
, ((mod4Mask, xK_e), TS.moveTo ["dev", "emacs"])
|
|
|
|
, ((mod4Mask, xK_f), TS.moveTo ["dev", "files"])
|
|
|
|
, ((mod4Mask, xK_p), TS.moveTo ["dev", "programming"])
|
|
|
|
, ((mod4Mask, xK_t), TS.moveTo ["dev", "terminal"])
|
|
|
|
, ((mod4Mask, xK_z), TS.moveTo ["dev", "virtualization"])
|
|
|
|
, ((mod4Mask, xK_g), TS.moveTo ["graphics", "gimp"])
|
|
|
|
, ((mod4Mask, xK_i), TS.moveTo ["graphics", "image viewer"])
|
|
|
|
, ((mod4Mask, xK_a), TS.moveTo ["music", "audio editor"])
|
|
|
|
, ((mod4Mask, xK_u), TS.moveTo ["music", "music player"])
|
|
|
|
, ((mod4Mask, xK_o), TS.moveTo ["video", "obs"])
|
|
|
|
, ((mod4Mask, xK_v), TS.moveTo ["video", "video player"])
|
|
|
|
, ((mod4Mask, xK_k), TS.moveTo ["video", "kdenlive"])
|
|
|
|
, ((mod4Mask .|. altMask, xK_h), TS.moveTo ["dev", "programming", "haskell"])
|
|
|
|
, ((mod4Mask .|. altMask, xK_p), TS.moveTo ["dev", "programming", "python"])
|
|
|
|
, ((mod4Mask .|. altMask, xK_s), TS.moveTo ["dev", "programming", "shell"])
|
2020-06-24 21:00:02 -04:00
|
|
|
]
|
|
|
|
|
2020-06-12 15:00:09 -04:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- XPROMPT SETTINGS
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
dtXPConfig :: XPConfig
|
|
|
|
dtXPConfig = def
|
2020-06-24 21:00:02 -04:00
|
|
|
{ font = myFont
|
2020-06-12 15:00:09 -04:00
|
|
|
, bgColor = "#292d3e"
|
|
|
|
, fgColor = "#d0d0d0"
|
|
|
|
, bgHLight = "#c792ea"
|
|
|
|
, fgHLight = "#000000"
|
|
|
|
, borderColor = "#535974"
|
|
|
|
, promptBorderWidth = 0
|
|
|
|
, promptKeymap = dtXPKeymap
|
|
|
|
, position = Top
|
|
|
|
-- , position = CenteredAt { xpCenterY = 0.3, xpWidth = 0.3 }
|
|
|
|
, height = 20
|
|
|
|
, historySize = 256
|
|
|
|
, historyFilter = id
|
|
|
|
, defaultText = []
|
|
|
|
, autoComplete = Just 100000 -- set Just 100000 for .1 sec
|
|
|
|
, showCompletionOnTab = False
|
2020-06-24 21:00:02 -04:00
|
|
|
-- , searchPredicate = isPrefixOf
|
|
|
|
, searchPredicate = fuzzyMatch
|
2020-06-12 15:00:09 -04:00
|
|
|
, alwaysHighlight = True
|
|
|
|
, maxComplRows = Nothing -- set to Just 5 for 5 rows
|
|
|
|
}
|
|
|
|
|
2020-06-25 00:02:45 -04:00
|
|
|
-- The same config above minus the autocomplete feature which is annoying
|
|
|
|
-- on certain Xprompts, like the search engine prompts.
|
2020-06-12 15:00:09 -04:00
|
|
|
dtXPConfig' :: XPConfig
|
|
|
|
dtXPConfig' = dtXPConfig
|
2020-06-24 21:00:02 -04:00
|
|
|
{ autoComplete = Nothing
|
2020-06-12 15:00:09 -04:00
|
|
|
}
|
|
|
|
|
2020-06-24 21:00:02 -04:00
|
|
|
-- A list of all of the standard Xmonad prompts and a key press assigned to them.
|
|
|
|
-- These are used in conjunction with keybinding I set later in the config.
|
2020-06-12 15:00:09 -04:00
|
|
|
promptList :: [(String, XPConfig -> X ())]
|
|
|
|
promptList = [ ("m", manPrompt) -- manpages prompt
|
|
|
|
, ("p", passPrompt) -- get passwords (requires 'pass')
|
|
|
|
, ("g", passGeneratePrompt) -- generate passwords (requires 'pass')
|
|
|
|
, ("r", passRemovePrompt) -- remove passwords (requires 'pass')
|
|
|
|
, ("s", sshPrompt) -- ssh prompt
|
|
|
|
, ("x", xmonadPrompt) -- xmonad prompt
|
|
|
|
]
|
|
|
|
|
2020-06-24 21:00:02 -04:00
|
|
|
-- Same as the above list except this is for my custom prompts.
|
2020-06-12 15:00:09 -04:00
|
|
|
promptList' :: [(String, XPConfig -> String -> X (), String)]
|
|
|
|
promptList' = [ ("c", calcPrompt, "qalc") -- requires qalculate-gtk
|
|
|
|
]
|
2020-06-24 21:00:02 -04:00
|
|
|
|
2020-06-12 15:00:09 -04:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- CUSTOM PROMPTS
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- calcPrompt requires a cli calculator called qalcualte-gtk.
|
2020-06-24 21:00:02 -04:00
|
|
|
-- You could use this as a template for other custom prompts that
|
2020-06-12 15:00:09 -04:00
|
|
|
-- use command line programs that return a single line of output.
|
2020-06-24 21:00:02 -04:00
|
|
|
calcPrompt :: XPConfig -> String -> X ()
|
2020-06-12 15:00:09 -04:00
|
|
|
calcPrompt c ans =
|
2020-06-24 21:00:02 -04:00
|
|
|
inputPrompt c (trim ans) ?+ \input ->
|
|
|
|
liftIO(runProcessWithInput "qalc" [input] "") >>= calcPrompt c
|
2020-06-12 15:00:09 -04:00
|
|
|
where
|
|
|
|
trim = f . f
|
|
|
|
where f = reverse . dropWhile isSpace
|
|
|
|
|
2020-05-20 18:29:47 -04:00
|
|
|
------------------------------------------------------------------------
|
2020-06-25 00:02:45 -04:00
|
|
|
-- XPROMPT KEYMAP (emacs-like key bindings for xprompts)
|
2020-05-20 18:29:47 -04:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
dtXPKeymap :: M.Map (KeyMask,KeySym) (XP ())
|
|
|
|
dtXPKeymap = M.fromList $
|
2020-05-22 01:14:58 -04:00
|
|
|
map (first $ (,) controlMask) -- control + <key>
|
|
|
|
[ (xK_z, killBefore) -- kill line backwards
|
2020-06-24 21:00:02 -04:00
|
|
|
, (xK_k, killAfter) -- kill line forwards
|
2020-05-22 01:14:58 -04:00
|
|
|
, (xK_a, startOfLine) -- move to the beginning of the line
|
|
|
|
, (xK_e, endOfLine) -- move to the end of the line
|
|
|
|
, (xK_m, deleteString Next) -- delete a character foward
|
|
|
|
, (xK_b, moveCursor Prev) -- move cursor forward
|
|
|
|
, (xK_f, moveCursor Next) -- move cursor backward
|
|
|
|
, (xK_BackSpace, killWord Prev) -- kill the previous word
|
|
|
|
, (xK_y, pasteString) -- paste a string
|
|
|
|
, (xK_g, quit) -- quit out of prompt
|
|
|
|
, (xK_bracketleft, quit)
|
2020-06-12 15:00:09 -04:00
|
|
|
]
|
2020-05-22 01:14:58 -04:00
|
|
|
++
|
|
|
|
map (first $ (,) altMask) -- meta key + <key>
|
|
|
|
[ (xK_BackSpace, killWord Prev) -- kill the prev word
|
|
|
|
, (xK_f, moveWord Next) -- move a word forward
|
|
|
|
, (xK_b, moveWord Prev) -- move a word backward
|
|
|
|
, (xK_d, killWord Next) -- kill the next word
|
|
|
|
, (xK_n, moveHistory W.focusUp') -- move up thru history
|
|
|
|
, (xK_p, moveHistory W.focusDown') -- move down thru history
|
|
|
|
]
|
|
|
|
++
|
|
|
|
map (first $ (,) 0) -- <key>
|
|
|
|
[ (xK_Return, setSuccess True >> setDone True)
|
|
|
|
, (xK_KP_Enter, setSuccess True >> setDone True)
|
|
|
|
, (xK_BackSpace, deleteString Prev)
|
|
|
|
, (xK_Delete, deleteString Next)
|
|
|
|
, (xK_Left, moveCursor Prev)
|
|
|
|
, (xK_Right, moveCursor Next)
|
|
|
|
, (xK_Home, startOfLine)
|
|
|
|
, (xK_End, endOfLine)
|
|
|
|
, (xK_Down, moveHistory W.focusUp')
|
|
|
|
, (xK_Up, moveHistory W.focusDown')
|
|
|
|
, (xK_Escape, quit)
|
|
|
|
]
|
2020-05-20 18:29:47 -04:00
|
|
|
|
|
|
|
------------------------------------------------------------------------
|
2020-06-12 15:00:09 -04:00
|
|
|
-- SEARCH ENGINES
|
2020-06-06 19:40:47 -04:00
|
|
|
------------------------------------------------------------------------
|
2020-06-12 15:00:09 -04:00
|
|
|
-- Xmonad has several search engines available to use located in
|
|
|
|
-- XMonad.Actions.Search. Additionally, you can add other search engines
|
|
|
|
-- such as those listed below.
|
|
|
|
archwiki, ebay, news, reddit, urban :: S.SearchEngine
|
|
|
|
|
|
|
|
archwiki = S.searchEngine "archwiki" "https://wiki.archlinux.org/index.php?search="
|
|
|
|
ebay = S.searchEngine "ebay" "https://www.ebay.com/sch/i.html?_nkw="
|
|
|
|
news = S.searchEngine "news" "https://news.google.com/search?q="
|
|
|
|
reddit = S.searchEngine "reddit" "https://www.reddit.com/search/?q="
|
|
|
|
urban = S.searchEngine "urban" "https://www.urbandictionary.com/define.php?term="
|
|
|
|
|
|
|
|
-- This is the list of search engines that I want to use. Some are from
|
|
|
|
-- XMonad.Actions.Search, and some are the ones that I added above.
|
|
|
|
searchList :: [(String, S.SearchEngine)]
|
|
|
|
searchList = [ ("a", archwiki)
|
|
|
|
, ("d", S.duckduckgo)
|
|
|
|
, ("e", ebay)
|
|
|
|
, ("g", S.google)
|
|
|
|
, ("h", S.hoogle)
|
|
|
|
, ("i", S.images)
|
|
|
|
, ("n", news)
|
|
|
|
, ("r", reddit)
|
|
|
|
, ("s", S.stackage)
|
|
|
|
, ("t", S.thesaurus)
|
|
|
|
, ("v", S.vocabulary)
|
|
|
|
, ("b", S.wayback)
|
|
|
|
, ("u", urban)
|
|
|
|
, ("w", S.wikipedia)
|
|
|
|
, ("y", S.youtube)
|
|
|
|
, ("z", S.amazon)
|
|
|
|
]
|
2020-05-27 14:02:54 -04:00
|
|
|
|
2020-02-17 01:07:06 -05:00
|
|
|
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-22 01:14:58 -04:00
|
|
|
-- WORKSPACES
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-18 20:13:19 -04:00
|
|
|
-- My workspaces are clickable meaning that the mouse can be used to switch
|
2020-06-24 21:00:02 -04:00
|
|
|
-- workspaces. This requires xdotool. You need to use UnsafeStdInReader instead
|
|
|
|
-- of simply StdInReader in xmobar config so you can pass actions to it.
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2020-06-24 22:20:10 -04:00
|
|
|
{- Commented out clickable xmobar workspaces to use TreeSelect workspaces.
|
|
|
|
|
2020-06-15 21:47:50 -04:00
|
|
|
xmobarEscape :: String -> String
|
2019-01-15 16:27:01 -05:00
|
|
|
xmobarEscape = concatMap doubleLts
|
|
|
|
where
|
|
|
|
doubleLts '<' = "<<"
|
|
|
|
doubleLts x = [x]
|
2020-06-21 20:48:27 -04:00
|
|
|
|
2020-06-24 21:00:02 -04:00
|
|
|
myWorkspaces :: [String]
|
|
|
|
myWorkspaces = clickable . map xmobarEscape
|
|
|
|
$ ["dev", "www", "sys", "doc", "vbox", "chat", "mus", "vid", "gfx"]
|
|
|
|
where
|
|
|
|
clickable l = [ "<action=xdotool key super+" ++ show n ++ ">" ++ ws ++ "</action>" |
|
|
|
|
(i,ws) <- zip [1..9] l,
|
|
|
|
let n = i ]
|
|
|
|
|
|
|
|
End of comment -}
|
|
|
|
|
|
|
|
-- TreeSelect workspaces
|
2020-06-21 20:48:27 -04:00
|
|
|
myWorkspaces :: Forest String
|
2020-06-24 21:00:02 -04:00
|
|
|
myWorkspaces = [ Node "dev"
|
|
|
|
[ Node "terminal" []
|
|
|
|
, Node "emacs" []
|
|
|
|
, Node "docs" []
|
|
|
|
, Node "files" []
|
|
|
|
, Node "programming"
|
|
|
|
[ Node "haskell" []
|
|
|
|
, Node "python" []
|
|
|
|
, Node "shell" []
|
|
|
|
]
|
|
|
|
, Node "virtualization" []
|
|
|
|
]
|
|
|
|
, Node "web"
|
|
|
|
[ Node "browser" []
|
|
|
|
, Node "chat" []
|
|
|
|
, Node "email" []
|
|
|
|
, Node "rss" []
|
2020-06-25 00:55:27 -04:00
|
|
|
, Node "web conference" []
|
2020-06-24 21:00:02 -04:00
|
|
|
]
|
|
|
|
, Node "graphics"
|
|
|
|
[ Node "gimp" []
|
|
|
|
, Node "image viewer" []
|
|
|
|
]
|
|
|
|
, Node "music"
|
|
|
|
[ Node "audio editor" []
|
|
|
|
, Node "music player" []
|
2020-06-21 20:48:27 -04:00
|
|
|
]
|
2020-06-24 21:00:02 -04:00
|
|
|
, Node "video"
|
|
|
|
[ Node "obs" []
|
2020-06-25 00:55:27 -04:00
|
|
|
, Node "kdenlive" []
|
|
|
|
, Node "video player" []
|
2020-06-21 20:48:27 -04:00
|
|
|
]
|
|
|
|
]
|
2020-06-24 21:00:02 -04:00
|
|
|
|
2020-05-18 20:13:19 -04:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- MANAGEHOOK
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- Sets some rules for certain programs. Examples include forcing certain
|
|
|
|
-- programs to always float, or to always appear on a certain workspace.
|
2020-05-20 19:25:47 -04:00
|
|
|
-- Forcing programs to a certain workspace with a doShift requires xdotool
|
2020-06-24 21:00:02 -04:00
|
|
|
-- if you are using clickable workspaces. You need the className or title
|
2020-05-20 19:25:47 -04:00
|
|
|
-- of the program. Use xprop to get this info.
|
2020-05-18 20:13:19 -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-06-24 21:00:02 -04:00
|
|
|
-- I'm doing it this way because otherwise I would have to write out
|
2020-05-22 11:50:18 -04:00
|
|
|
-- the full name of my clickable workspaces, which would look like:
|
2020-05-22 12:04:43 -04:00
|
|
|
-- doShift "<action xdotool super+8>gfx</action>"
|
2020-06-24 21:00:02 -04:00
|
|
|
[ className =? "obs" --> doShift ( "video.obs" )
|
|
|
|
, title =? "firefox" --> doShift ( "web.browser" )
|
|
|
|
, title =? "qutebrowser" --> doShift ( "web.browser" )
|
|
|
|
, className =? "mpv" --> doShift ( "video.movie player" )
|
|
|
|
, className =? "vlc" --> doShift ( "video.movie player" )
|
|
|
|
, className =? "Gimp" --> doShift ( "graphics.gimp")
|
2020-05-22 11:50:18 -04:00
|
|
|
, className =? "Gimp" --> doFloat
|
|
|
|
, title =? "Oracle VM VirtualBox Manager" --> doFloat
|
2020-06-24 21:00:02 -04:00
|
|
|
, className =? "VirtualBox Manager" --> doShift ( "dev.virtualization" )
|
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
|
|
|
|
2020-06-24 21:00:02 -04:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- LOGHOOK
|
|
|
|
------------------------------------------------------------------------
|
2020-06-25 00:55:27 -04:00
|
|
|
-- Sets opacity for inactive (unfocused) windows. I prefer to not use
|
2020-06-25 00:02:45 -04:00
|
|
|
-- this feature so I've set opacity to 1.0. If you want opacity, set
|
|
|
|
-- this to a value of less than 1 (such as 0.9 for 90% opacity).
|
2020-06-24 21:00:02 -04:00
|
|
|
myLogHook :: X ()
|
|
|
|
myLogHook = fadeInactiveLogHook fadeAmount
|
2020-06-24 22:20:10 -04:00
|
|
|
where fadeAmount = 1.0
|
2020-06-24 21:00:02 -04:00
|
|
|
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-18 20:13:19 -04:00
|
|
|
-- LAYOUTS
|
2019-02-13 10:40:35 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-30 12:49:58 -04:00
|
|
|
-- Makes setting the spacingRaw simpler to write. The spacingRaw
|
|
|
|
-- module adds a configurable amount of space around windows.
|
|
|
|
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
|
2020-06-06 19:40:47 -04:00
|
|
|
|
|
|
|
-- Below is a variation of the above except no borders are applied
|
2020-05-30 12:49:58 -04:00
|
|
|
-- if fewer than two windows. So a single window has no gaps.
|
2020-06-06 19:40:47 -04:00
|
|
|
mySpacing' :: Integer -> l a -> XMonad.Layout.LayoutModifier.ModifiedLayout Spacing l a
|
2020-05-30 13:30:29 -04:00
|
|
|
mySpacing' i = spacingRaw True (Border i i i i) True (Border i i i i) True
|
2020-05-30 12:49:58 -04:00
|
|
|
|
2020-06-12 21:56:07 -04:00
|
|
|
-- Defining a bunch of layouts, many that I don't use.
|
2020-05-30 12:49:58 -04:00
|
|
|
tall = renamed [Replace "tall"]
|
|
|
|
$ limitWindows 12
|
|
|
|
$ mySpacing 8
|
|
|
|
$ ResizableTall 1 (3/100) (1/2) []
|
2020-06-12 21:56:07 -04:00
|
|
|
magnify = renamed [Replace "magnify"]
|
|
|
|
$ magnifier
|
|
|
|
$ limitWindows 12
|
|
|
|
$ mySpacing 8
|
|
|
|
$ ResizableTall 1 (3/100) (1/2) []
|
2020-05-30 13:30:29 -04:00
|
|
|
monocle = renamed [Replace "monocle"]
|
2020-06-19 23:43:40 -04:00
|
|
|
$ limitWindows 20 Full
|
2020-05-30 13:30:29 -04:00
|
|
|
floats = renamed [Replace "floats"]
|
2020-06-19 23:43:40 -04:00
|
|
|
$ limitWindows 20 simplestFloat
|
2020-05-30 12:49:58 -04:00
|
|
|
grid = renamed [Replace "grid"]
|
|
|
|
$ limitWindows 12
|
|
|
|
$ mySpacing 8
|
|
|
|
$ mkToggle (single MIRROR)
|
|
|
|
$ Grid (16/10)
|
2020-05-30 13:30:29 -04:00
|
|
|
spirals = renamed [Replace "spirals"]
|
2020-05-30 12:49:58 -04:00
|
|
|
$ mySpacing' 8
|
2020-05-30 13:30:29 -04:00
|
|
|
$ spiral (6/7)
|
|
|
|
threeCol = renamed [Replace "threeCol"]
|
|
|
|
$ limitWindows 7
|
|
|
|
$ mySpacing' 4
|
|
|
|
$ ThreeCol 1 (3/100) (1/2)
|
|
|
|
threeRow = renamed [Replace "threeRow"]
|
|
|
|
$ limitWindows 7
|
|
|
|
$ mySpacing' 4
|
|
|
|
-- Mirror takes a layout and rotates it by 90 degrees.
|
|
|
|
-- So we are applying Mirror to the ThreeCol layout.
|
2020-05-30 12:49:58 -04:00
|
|
|
$ Mirror
|
2020-05-30 13:30:29 -04:00
|
|
|
$ ThreeCol 1 (3/100) (1/2)
|
2020-06-06 19:40:47 -04:00
|
|
|
tabs = renamed [Replace "tabs"]
|
|
|
|
-- I cannot add spacing to this layout because it will
|
|
|
|
-- add spacing between window and tabs which looks bad.
|
|
|
|
$ tabbed shrinkText myTabConfig
|
|
|
|
where
|
|
|
|
myTabConfig = def { fontName = "xft:Mononoki Nerd Font:regular:pixelsize=11"
|
|
|
|
, activeColor = "#292d3e"
|
|
|
|
, inactiveColor = "#3e445e"
|
|
|
|
, activeBorderColor = "#292d3e"
|
|
|
|
, inactiveBorderColor = "#292d3e"
|
|
|
|
, activeTextColor = "#ffffff"
|
|
|
|
, inactiveTextColor = "#d0d0d0"
|
|
|
|
}
|
2020-06-24 21:00:02 -04:00
|
|
|
|
|
|
|
-- Theme for showWName which prints current workspace when you change workspaces.
|
|
|
|
myShowWNameTheme :: SWNConfig
|
|
|
|
myShowWNameTheme = def
|
|
|
|
{ swn_font = "xft:Sans:bold:size=60"
|
|
|
|
, swn_fade = 1.0
|
|
|
|
, swn_bgcolor = "#000000"
|
|
|
|
, swn_color = "#FFFFFF"
|
|
|
|
}
|
|
|
|
|
2020-06-06 19:40:47 -04:00
|
|
|
-- The layout hook
|
2020-05-30 12:49:58 -04:00
|
|
|
myLayoutHook = avoidStruts $ mouseResize $ windowArrange $ T.toggleLayouts floats $
|
2020-06-19 23:43:40 -04:00
|
|
|
mkToggle (NBFULL ?? NOBORDERS ?? EOT) myDefaultLayout
|
2020-05-30 12:49:58 -04:00
|
|
|
where
|
2020-06-12 21:56:07 -04:00
|
|
|
-- I've commented out the layouts I don't use.
|
|
|
|
myDefaultLayout = tall
|
|
|
|
||| magnify
|
|
|
|
||| noBorders monocle
|
|
|
|
||| floats
|
|
|
|
-- ||| grid
|
|
|
|
||| noBorders tabs
|
|
|
|
-- ||| spirals
|
|
|
|
-- ||| threeCol
|
|
|
|
-- ||| threeRow
|
2019-01-15 16:27:01 -05:00
|
|
|
|
2019-02-25 23:08:15 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-05-18 20:13:19 -04:00
|
|
|
-- SCRATCHPADS
|
2019-02-25 23:08:15 -05:00
|
|
|
------------------------------------------------------------------------
|
2020-06-24 21:00:02 -04:00
|
|
|
-- Allows to have several floating scratchpads running different applications.
|
|
|
|
-- Import Util.NamedScratchpad. Bind a key to namedScratchpadSpawnAction.
|
2020-05-24 22:27:19 -04:00
|
|
|
myScratchPads :: [NamedScratchpad]
|
2019-03-01 21:13:10 -05:00
|
|
|
myScratchPads = [ NS "terminal" spawnTerm findTerm manageTerm
|
2020-06-12 15:00:09 -04:00
|
|
|
, NS "mocp" spawnMocp findMocp manageMocp
|
2019-03-01 21:13:10 -05:00
|
|
|
]
|
2020-06-19 23:43:40 -04:00
|
|
|
where
|
2020-06-06 19:40:47 -04:00
|
|
|
spawnTerm = myTerminal ++ " -n scratchpad"
|
2019-03-01 21:13:10 -05:00
|
|
|
findTerm = resource =? "scratchpad"
|
|
|
|
manageTerm = customFloating $ W.RationalRect l t w h
|
2020-06-19 23:43:40 -04:00
|
|
|
where
|
2019-03-01 21:13:10 -05:00
|
|
|
h = 0.9
|
|
|
|
w = 0.9
|
|
|
|
t = 0.95 -h
|
|
|
|
l = 0.95 -w
|
2020-06-12 15:00:09 -04:00
|
|
|
spawnMocp = myTerminal ++ " -n mocp 'mocp'"
|
|
|
|
findMocp = resource =? "mocp"
|
|
|
|
manageMocp = customFloating $ W.RationalRect l t w h
|
2020-06-19 23:43:40 -04:00
|
|
|
where
|
2019-03-01 21:13:10 -05:00
|
|
|
h = 0.9
|
|
|
|
w = 0.9
|
|
|
|
t = 0.95 -h
|
|
|
|
l = 0.95 -w
|
2020-05-20 18:29:47 -04:00
|
|
|
|
2020-06-24 21:00:02 -04:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- KEYBINDINGS
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
-- I am using the Xmonad.Util.EZConfig module which allows keybindings
|
|
|
|
-- to be written in simpler, emacs-like format.
|
|
|
|
myKeys :: [(String, X ())]
|
|
|
|
myKeys =
|
|
|
|
-- Xmonad
|
|
|
|
[ ("M-C-r", spawn "xmonad --recompile") -- Recompiles xmonad
|
|
|
|
, ("M-S-r", spawn "xmonad --restart") -- Restarts xmonad
|
|
|
|
, ("M-S-q", io exitSuccess) -- Quits xmonad
|
|
|
|
|
|
|
|
-- Open my preferred terminal
|
|
|
|
, ("M-<Return>", spawn myTerminal)
|
|
|
|
|
|
|
|
-- Run Prompt
|
|
|
|
, ("M-S-<Return>", shellPrompt dtXPConfig) -- Shell Prompt
|
|
|
|
|
|
|
|
-- Windows
|
|
|
|
, ("M-S-c", kill1) -- Kill the currently focused client
|
|
|
|
, ("M-S-a", killAll) -- Kill all windows on current workspace
|
|
|
|
|
|
|
|
-- Floating windows
|
|
|
|
, ("M-f", sendMessage (T.Toggle "floats")) -- Toggles my 'floats' layout
|
|
|
|
, ("M-<Delete>", withFocused $ windows . W.sink) -- Push floating window back to tile
|
|
|
|
, ("M-S-<Delete>", sinkAll) -- Push ALL floating windows to tile
|
|
|
|
|
|
|
|
-- Grid Select (CTRL-g followed by a key)
|
|
|
|
, ("C-g g", spawnSelected' myAppGrid) -- grid select favorite apps
|
|
|
|
, ("C-g m", spawnSelected' myBookmarkGrid) -- grid select some bookmarks
|
|
|
|
, ("C-g c", spawnSelected' myConfigGrid) -- grid select useful config files
|
|
|
|
, ("C-g t", goToSelected $ mygridConfig myColorizer) -- goto selected window
|
|
|
|
, ("C-g b", bringSelected $ mygridConfig myColorizer) -- bring selected window
|
|
|
|
|
|
|
|
-- Tree Select/
|
|
|
|
-- tree select actions menu
|
|
|
|
, ("C-t a", treeselectAction tsDefaultConfig)
|
|
|
|
-- tree select workspaces menu
|
|
|
|
, ("C-t t", TS.treeselectWorkspace tsDefaultConfig myWorkspaces W.greedyView)
|
|
|
|
-- tree select choose workspace to send window
|
|
|
|
, ("C-t g", TS.treeselectWorkspace tsDefaultConfig myWorkspaces W.shift)
|
|
|
|
|
|
|
|
-- Windows navigation
|
|
|
|
, ("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
|
|
|
|
, ("M1-S-<Tab>", rotSlavesDown) -- Rotate all windows except master and keep focus in place
|
|
|
|
, ("M1-C-<Tab>", rotAllDown) -- Rotate all the windows in the current stack
|
|
|
|
--, ("M-S-s", windows copyToAll)
|
|
|
|
, ("M-C-s", killAllOtherCopies)
|
|
|
|
|
|
|
|
-- Layouts
|
|
|
|
, ("M-<Tab>", sendMessage NextLayout) -- Switch to next layout
|
|
|
|
, ("M-C-M1-<Up>", sendMessage Arrange)
|
|
|
|
, ("M-C-M1-<Down>", sendMessage DeArrange)
|
|
|
|
, ("M-<Space>", sendMessage (MT.Toggle NBFULL) >> sendMessage ToggleStruts) -- Toggles noborder/full
|
|
|
|
, ("M-S-<Space>", sendMessage ToggleStruts) -- Toggles struts
|
|
|
|
, ("M-S-n", sendMessage $ MT.Toggle NOBORDERS) -- Toggles noborder
|
|
|
|
, ("M-<KP_Multiply>", sendMessage (IncMasterN 1)) -- Increase number of clients in master pane
|
|
|
|
, ("M-<KP_Divide>", sendMessage (IncMasterN (-1))) -- Decrease number of clients in master pane
|
|
|
|
, ("M-S-<KP_Multiply>", increaseLimit) -- Increase number of windows
|
|
|
|
, ("M-S-<KP_Divide>", decreaseLimit) -- Decrease number of windows
|
|
|
|
|
|
|
|
, ("M-h", sendMessage Shrink) -- Shrink horiz window width
|
|
|
|
, ("M-l", sendMessage Expand) -- Expand horiz window width
|
|
|
|
, ("M-C-j", sendMessage MirrorShrink) -- Shrink vert window width
|
|
|
|
, ("M-C-k", sendMessage MirrorExpand) -- Exoand vert window width
|
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
|
|
|
-- Scratchpads
|
|
|
|
, ("M-C-<Return>", namedScratchpadAction myScratchPads "terminal")
|
|
|
|
, ("M-C-c", namedScratchpadAction myScratchPads "mocp")
|
|
|
|
|
|
|
|
-- Controls for mocp music player.
|
|
|
|
, ("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-06-25 00:55:27 -04:00
|
|
|
, ("C-e e", spawn "emacsclient -c -a ''") -- start emacs
|
|
|
|
, ("C-e b", spawn "emacsclient -c -a '' --eval '(ibuffer)'") -- list emacs buffers
|
|
|
|
, ("C-e d", spawn "emacsclient -c -a '' --eval '(dired nil)'") -- dired emacs file manager
|
|
|
|
, ("C-e m", spawn "emacsclient -c -a '' --eval '(mu4e)'") -- mu4e emacs email client
|
|
|
|
, ("C-e n", spawn "emacsclient -c -a '' --eval '(elfeed)'") -- elfeed emacs rss client
|
|
|
|
, ("C-e s", spawn "emacsclient -c -a '' --eval '(eshell)'") -- eshell within emacs
|
|
|
|
, ("C-e t", spawn "emacsclient -c -a '' --eval '(+vterm/here nil)'") -- eshell within emacs
|
2020-06-27 16:24:59 -04:00
|
|
|
-- emms is an emacs audio player. I set it to auto start playing in a specific directory.
|
|
|
|
, ("C-e a", spawn "emacsclient -c -a '' --eval '(emms)' --eval '(emms-play-directory-tree \"~/Music/Non-Classical/70s-80s/\")'")
|
2020-06-24 21:00:02 -04:00
|
|
|
|
|
|
|
--- My Applications (Super+Alt+Key)
|
|
|
|
, ("M-M1-a", spawn (myTerminal ++ " -e ncpamixer"))
|
|
|
|
, ("M-M1-b", spawn "surf www.youtube.com/c/DistroTube/")
|
2020-06-27 16:24:59 -04:00
|
|
|
, ("M-M1-e", spawn (myTerminal ++ " -e neomutt"))
|
2020-06-24 21:00:02 -04:00
|
|
|
, ("M-M1-f", spawn (myTerminal ++ " -e sh ./.config/vifm/scripts/vifmrun"))
|
|
|
|
, ("M-M1-i", spawn (myTerminal ++ " -e irssi"))
|
|
|
|
, ("M-M1-j", spawn (myTerminal ++ " -e joplin"))
|
|
|
|
, ("M-M1-l", spawn (myTerminal ++ " -e lynx -cfg=~/.lynx/lynx.cfg -lss=~/.lynx/lynx.lss gopher://distro.tube"))
|
|
|
|
, ("M-M1-m", spawn (myTerminal ++ " -e mocp"))
|
2020-06-27 16:24:59 -04:00
|
|
|
, ("M-M1-n", spawn (myTerminal ++ " -e newsboat"))
|
2020-06-24 21:00:02 -04:00
|
|
|
, ("M-M1-p", spawn (myTerminal ++ " -e pianobar"))
|
|
|
|
, ("M-M1-r", spawn (myTerminal ++ " -e rtv"))
|
|
|
|
, ("M-M1-t", spawn (myTerminal ++ " -e toot curses"))
|
|
|
|
, ("M-M1-w", spawn (myTerminal ++ " -e wopr report.xml"))
|
|
|
|
, ("M-M1-y", spawn (myTerminal ++ " -e youtube-viewer"))
|
|
|
|
|
|
|
|
-- Multimedia Keys
|
|
|
|
, ("<XF86AudioPlay>", spawn "cmus toggle")
|
|
|
|
, ("<XF86AudioPrev>", spawn "cmus prev")
|
|
|
|
, ("<XF86AudioNext>", spawn "cmus next")
|
|
|
|
-- , ("<XF86AudioMute>", spawn "amixer set Master toggle") -- Bug prevents it from toggling correctly in 12.04.
|
|
|
|
, ("<XF86AudioLowerVolume>", spawn "amixer set Master 5%- unmute")
|
|
|
|
, ("<XF86AudioRaiseVolume>", spawn "amixer set Master 5%+ unmute")
|
|
|
|
, ("<XF86HomePage>", spawn "firefox")
|
|
|
|
, ("<XF86Search>", safeSpawn "firefox" ["https://www.google.com/"])
|
|
|
|
, ("<XF86Mail>", runOrRaise "geary" (resource =? "thunderbird"))
|
|
|
|
, ("<XF86Calculator>", runOrRaise "gcalctool" (resource =? "gcalctool"))
|
|
|
|
, ("<XF86Eject>", spawn "toggleeject")
|
|
|
|
, ("<Print>", spawn "scrotd 0")
|
|
|
|
]
|
|
|
|
-- Appending search engine prompts to keybindings list.
|
|
|
|
-- Look at "search engines" section of this config for values for "k".
|
|
|
|
++ [("M-s " ++ k, S.promptSearch dtXPConfig' f) | (k,f) <- searchList ]
|
|
|
|
++ [("M-S-s " ++ k, S.selectSearch f) | (k,f) <- searchList ]
|
|
|
|
-- Appending some extra xprompts to keybindings list.
|
|
|
|
-- Look at "xprompt settings" section this of config for values for "k".
|
|
|
|
++ [("M-p " ++ k, f dtXPConfig') | (k,f) <- promptList ]
|
|
|
|
++ [("M-p " ++ k, f dtXPConfig' g) | (k,f,g) <- promptList' ]
|
|
|
|
-- The following lines are needed for named scratchpads.
|
|
|
|
where nonNSP = WSIs (return (\ws -> W.tag ws /= "nsp"))
|
|
|
|
nonEmptyNonNSP = WSIs (return (\ws -> isJust (W.stack ws) && W.tag ws /= "nsp"))
|
|
|
|
|
2020-05-20 18:29:47 -04:00
|
|
|
------------------------------------------------------------------------
|
2020-05-22 01:14:58 -04:00
|
|
|
-- MAIN
|
2020-05-20 18:29:47 -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.
|
|
|
|
xmproc0 <- spawnPipe "xmobar -x 0 /home/dt/.config/xmobar/xmobarrc0"
|
|
|
|
xmproc1 <- spawnPipe "xmobar -x 1 /home/dt/.config/xmobar/xmobarrc2"
|
|
|
|
xmproc2 <- spawnPipe "xmobar -x 2 /home/dt/.config/xmobar/xmobarrc1"
|
|
|
|
-- 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-06-24 21:00:02 -04:00
|
|
|
, handleEventHook = serverModeEventHookCmd
|
|
|
|
<+> serverModeEventHook
|
2020-06-06 19:40:47 -04:00
|
|
|
<+> serverModeEventHookF "XMONAD_PRINT" (io . putStrLn)
|
|
|
|
<+> docksEventHook
|
2020-05-21 22:39:36 -04:00
|
|
|
, modMask = myModMask
|
|
|
|
, terminal = myTerminal
|
|
|
|
, startupHook = myStartupHook
|
2020-06-24 21:00:02 -04:00
|
|
|
, layoutHook = showWName' myShowWNameTheme myLayoutHook
|
2020-06-21 20:48:27 -04:00
|
|
|
, workspaces = TS.toWorkspaces myWorkspaces
|
2020-05-21 22:39:36 -04:00
|
|
|
, borderWidth = myBorderWidth
|
2020-05-22 01:14:58 -04:00
|
|
|
, normalBorderColor = myNormColor
|
|
|
|
, focusedBorderColor = myFocusColor
|
2020-06-24 21:00:02 -04:00
|
|
|
, logHook = workspaceHistoryHook <+> myLogHook <+> dynamicLogWithPP xmobarPP
|
|
|
|
{ ppOutput = \x -> hPutStrLn xmproc0 x >> hPutStrLn xmproc1 x >> hPutStrLn xmproc2 x
|
|
|
|
, ppCurrent = xmobarColor "#c3e88d" "" . wrap "[" "]" -- Current workspace in xmobar
|
|
|
|
, ppVisible = xmobarColor "#c3e88d" "" -- Visible but not current workspace
|
|
|
|
, ppHidden = xmobarColor "#82AAFF" "" . wrap "*" "" -- Hidden workspaces in xmobar
|
|
|
|
-- , ppHiddenNoWindows = xmobarColor "#F07178" "" -- Hidden workspaces (no windows)
|
|
|
|
, ppHiddenNoWindows= \( _ ) -> "" -- Only shows visible workspaces. Useful for TreeSelect.
|
|
|
|
, ppTitle = xmobarColor "#d0d0d0" "" . shorten 60 -- Title of active window in xmobar
|
|
|
|
, ppSep = "<fc=#666666> | </fc>" -- Separators in xmobar
|
|
|
|
, ppUrgent = xmobarColor "#C45500" "" . wrap "!" "!" -- Urgent workspace
|
|
|
|
, ppExtras = [windowCount] -- # of windows current workspace
|
|
|
|
, ppOrder = \(ws:l:t:ex) -> [ws,l]++ex++[t]
|
|
|
|
}
|
|
|
|
} `additionalKeysP` myKeys
|