mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
asdf
This commit is contained in:
parent
6132c83d5d
commit
164dca7bd1
1 changed files with 0 additions and 254 deletions
|
@ -1,254 +0,0 @@
|
||||||
{-# Language ScopedTypeVariables #-}
|
|
||||||
-- Imports -------------------------------------------------------- {{{
|
|
||||||
module Config (main) where
|
|
||||||
|
|
||||||
|
|
||||||
import qualified Data.Map as M
|
|
||||||
import Data.List (isSuffixOf, isPrefixOf)
|
|
||||||
import qualified Data.Maybe as Maybe
|
|
||||||
import Data.Char (isDigit)
|
|
||||||
import System.Exit (exitWith, ExitCode(ExitSuccess))
|
|
||||||
import qualified Data.Monoid
|
|
||||||
import qualified DBus as D
|
|
||||||
import qualified DBus.Client as D
|
|
||||||
import qualified Codec.Binary.UTF8.String as UTF8
|
|
||||||
|
|
||||||
import XMonad hiding ((|||))
|
|
||||||
import qualified XMonad.Util.Dmenu as Dmenu
|
|
||||||
import qualified XMonad.StackSet as W
|
|
||||||
import XMonad.Actions.CopyWindow
|
|
||||||
import XMonad.Actions.Submap
|
|
||||||
import XMonad.Config.Desktop
|
|
||||||
|
|
||||||
import XMonad.Hooks.DynamicLog
|
|
||||||
import XMonad.Hooks.ManageHelpers
|
|
||||||
import XMonad.Hooks.FadeInactive
|
|
||||||
import XMonad.Hooks.ManageDocks
|
|
||||||
import XMonad.Hooks.EwmhDesktops (fullscreenEventHook)
|
|
||||||
import XMonad.Hooks.SetWMName (setWMName)
|
|
||||||
import XMonad.Layout.Gaps
|
|
||||||
import XMonad.Layout.LayoutHints
|
|
||||||
import XMonad.Layout.LayoutCombinators ((|||))
|
|
||||||
import XMonad.Layout.NoBorders -- for fullscreen without borders
|
|
||||||
import XMonad.Layout.ResizableTile -- for resizeable tall layout
|
|
||||||
import XMonad.Layout.Spacing
|
|
||||||
import XMonad.Layout.Spiral
|
|
||||||
import XMonad.Layout.ThreeColumns -- for three column layout
|
|
||||||
import XMonad.Layout.ToggleLayouts
|
|
||||||
import XMonad.Util.EZConfig (additionalKeysP, removeKeysP)
|
|
||||||
import XMonad.Util.NamedScratchpad
|
|
||||||
import XMonad.Util.Run
|
|
||||||
import XMonad.Util.SpawnOnce (spawnOnce)
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- Values -------------------- {{{
|
|
||||||
|
|
||||||
myModMask = mod4Mask
|
|
||||||
myLauncher = "rofi -show run"
|
|
||||||
myTerminal = "kitty --single-instance"
|
|
||||||
myBrowser = "google-chrome-stable"
|
|
||||||
--yBar = "xmobar"
|
|
||||||
--myXmobarPP= xmobarPP { ppCurrent = xmobarColor "#429942" "" . wrap "<" ">" }
|
|
||||||
|
|
||||||
scratchpads :: [NamedScratchpad]
|
|
||||||
scratchpads =
|
|
||||||
[ NS "terminal" (myTerminal ++ " --class scratchpad_term") (className =? "scratchpad_term")
|
|
||||||
(customFloating $ W.RationalRect 0 0.7 1 0.3)
|
|
||||||
, NS "ghci" (myTerminal ++ " -e \"stack exec -- ghci\" --class scratchpad_ghci") (className =? "scratchpad_ghci")
|
|
||||||
(customFloating $ W.RationalRect 0 0.7 1 0.3)
|
|
||||||
, NS "whatsapp" ("gtk-launch chrome-hnpfjngllnobngcgfapefoaidbinmjnm-Default.desktop") (("WhatsApp" `isSuffixOf`) <$> title) defaultFloating
|
|
||||||
, NS "slack" ("slack") (("Slack | " `isPrefixOf`) <$> title) defaultFloating
|
|
||||||
]
|
|
||||||
|
|
||||||
{-| adds the scripts-directory path to the filename of a script |-}
|
|
||||||
scriptFile :: String -> String
|
|
||||||
scriptFile script = "/home/leon/scripts/" ++ script
|
|
||||||
|
|
||||||
-- Colors ------ {{{
|
|
||||||
fg = "#ebdbb2"
|
|
||||||
bg = "#282828"
|
|
||||||
gray = "#a89984"
|
|
||||||
bg1 = "#3c3836"
|
|
||||||
bg2 = "#504945"
|
|
||||||
bg3 = "#665c54"
|
|
||||||
bg4 = "#7c6f64"
|
|
||||||
|
|
||||||
green = "#b8bb26"
|
|
||||||
darkgreen = "#98971a"
|
|
||||||
red = "#fb4934"
|
|
||||||
darkred = "#cc241d"
|
|
||||||
yellow = "#fabd2f"
|
|
||||||
blue = "#83a598"
|
|
||||||
purple = "#d3869b"
|
|
||||||
aqua = "#8ec07c"
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- Layout ---------------------------------------- {{{
|
|
||||||
myLayout = smartBorders $ toggleLayouts Full $ withSpacing $ layoutHints
|
|
||||||
( ResizableTall 1 (3/100) (1/2) []
|
|
||||||
||| Mirror (ResizableTall 1 (3/100) (3/4) [])
|
|
||||||
||| spiral (6/7) -- Grid
|
|
||||||
||| ThreeColMid 1 (3/100) (1/2)
|
|
||||||
)
|
|
||||||
-- mouseResizableTile ||| Mirror mouseResizableTile
|
|
||||||
where
|
|
||||||
-- add spacing between windows
|
|
||||||
withSpacing = spacingRaw True (Border 10 10 10 10) True (Border 7 7 7 7) True
|
|
||||||
--withGaps = gaps' [((L, 10), True),((U, 10), True), ((D, 10), True), ((R, 10), True )]
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- Loghook -------------------------------------- {{{
|
|
||||||
|
|
||||||
myLogHook :: X ()
|
|
||||||
myLogHook = do
|
|
||||||
fadeInactiveLogHook 0.95 -- opacity of unfocused windows
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- Startuphook ----------------------------- {{{
|
|
||||||
|
|
||||||
myStartupHook :: X ()
|
|
||||||
myStartupHook = do
|
|
||||||
spawnOnce "picom --config ~/.config/picom.conf --no-fading-openclose"
|
|
||||||
spawnOnce "pasystray"
|
|
||||||
spawn "/home/leon/.config/polybar/launch.sh"
|
|
||||||
setWMName "LG3D" -- Java stuff hack
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- Keymap --------------------------------------- {{{
|
|
||||||
|
|
||||||
-- Default mappings that need to be removed removedKeys :: [String]
|
|
||||||
removedKeys = ["M-S-c", "M-S-q"]
|
|
||||||
|
|
||||||
myKeys :: [(String, X ())]
|
|
||||||
myKeys = [ ("M-C-k", sendMessage MirrorExpand)
|
|
||||||
, ("M-C-j", sendMessage MirrorShrink)
|
|
||||||
, ("M-f", toggleFullscreen)
|
|
||||||
, ("M-S-C-c", kill1)
|
|
||||||
, ("M-S-C-a", windows copyToAll) -- windows: Modify the current window list with a pure function, and refresh
|
|
||||||
, ("M-C-c", killAllOtherCopies)
|
|
||||||
, ("M-S-C-q", io $ exitWith ExitSuccess)
|
|
||||||
|
|
||||||
-- programs
|
|
||||||
, ("M-p", spawn myLauncher)
|
|
||||||
, ("M-S-p", spawn "rofi -combi-modi drun,window,ssh -show combi")
|
|
||||||
, ("M-S-e", spawn "rofi -show emoji -modi emoji")
|
|
||||||
, ("M-b", spawn myBrowser)
|
|
||||||
, ("M-s", spawn $ scriptFile "rofi-search.sh")
|
|
||||||
, ("M-S-s", spawn $ "cat " ++ scriptFile "bookmarks" ++ " | rofi -p open -dmenu | bash")
|
|
||||||
, ("M-n", spawn "echo 'n: terminal, h: ghci, w: WhatsApp, s: slack' | dzen2 -p 1" >> scratchpadSubmap)
|
|
||||||
, ("M-e", promptExecute specialCommands)
|
|
||||||
|
|
||||||
] ++ copyToWorkspaceMappings
|
|
||||||
where
|
|
||||||
copyToWorkspaceMappings :: [(String, X())]
|
|
||||||
copyToWorkspaceMappings = [("M-C-" ++ wsp, windows $ copy wsp) | wsp <- map show [1..9]]
|
|
||||||
|
|
||||||
toggleFullscreen :: X ()
|
|
||||||
toggleFullscreen = do
|
|
||||||
sendMessage ToggleLayout -- toggle fullscreen layout
|
|
||||||
sendMessage ToggleStruts -- bar is hidden -> no need to make place for it
|
|
||||||
--sendMessage ToggleGaps -- show a small gap around the window
|
|
||||||
safeSpawn "polybar-msg" ["cmd", "toggle"] -- toggle polybar visibility
|
|
||||||
|
|
||||||
scratchpadSubmap :: X ()
|
|
||||||
scratchpadSubmap = submap $ M.fromList
|
|
||||||
[ ((myModMask, xK_n), namedScratchpadAction scratchpads "terminal")
|
|
||||||
, ((myModMask, xK_h), namedScratchpadAction scratchpads "ghci")
|
|
||||||
, ((myModMask, xK_w), namedScratchpadAction scratchpads "whatsapp")
|
|
||||||
, ((myModMask, xK_s), namedScratchpadAction scratchpads "slack") ]
|
|
||||||
|
|
||||||
|
|
||||||
specialCommands :: [(String, X ())]
|
|
||||||
specialCommands =
|
|
||||||
[ ("toggleSpacing", toggleWindowSpacingEnabled)
|
|
||||||
, ("toggleGaps", sendMessage ToggleGaps)
|
|
||||||
, ("screenshot", spawn $ scriptFile "screenshot.sh")
|
|
||||||
]
|
|
||||||
|
|
||||||
promptExecute :: [(String, X ())] -> X ()
|
|
||||||
promptExecute commands = do
|
|
||||||
selection <- Dmenu.menuMapArgs "rofi" ["-dmenu", "-i"] $ M.fromList commands -- -i -> case-insensitive
|
|
||||||
Maybe.fromMaybe (return ()) selection
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- ManageHook -------------------------------{{{
|
|
||||||
|
|
||||||
myManageHook :: Query (Data.Monoid.Endo WindowSet)
|
|
||||||
myManageHook = composeAll
|
|
||||||
[ resource =? "Dialog" --> doFloat
|
|
||||||
-- , isFullscreen --> doF W.focusDown <+> doFullFloat
|
|
||||||
, manageDocks
|
|
||||||
, namedScratchpadManageHook scratchpads
|
|
||||||
]
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- Main ------------------------------------ {{{
|
|
||||||
main :: IO ()
|
|
||||||
main = do
|
|
||||||
dbus <- D.connectSession
|
|
||||||
-- Request access to the DBus name
|
|
||||||
_ <- D.requestName dbus (D.busName_ "org.xmonad.Log")
|
|
||||||
[D.nameAllowReplacement, D.nameReplaceExisting, D.nameDoNotQueue]
|
|
||||||
|
|
||||||
-- $ ewmh (kills IntelliJ)
|
|
||||||
xmonad $ desktopConfig
|
|
||||||
{ terminal = myTerminal
|
|
||||||
, modMask = myModMask
|
|
||||||
, borderWidth = 1
|
|
||||||
, layoutHook = avoidStruts myLayout
|
|
||||||
, logHook = myLogHook <+> dynamicLogWithPP (polybarPP dbus) <+> logHook def
|
|
||||||
, startupHook = myStartupHook <+> startupHook def
|
|
||||||
, manageHook = myManageHook <+> manageHook def
|
|
||||||
--, handleEventHook = fullscreenEventHook
|
|
||||||
, focusedBorderColor = aqua
|
|
||||||
, normalBorderColor = "#282828"
|
|
||||||
} `removeKeysP` removedKeys `additionalKeysP` myKeys
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
-- POLYBAR Kram -------------------------------------- {{{
|
|
||||||
|
|
||||||
|
|
||||||
polybarPP :: D.Client -> PP
|
|
||||||
polybarPP dbus = namedScratchpadFilterOutWorkspacePP $ def
|
|
||||||
{ ppOutput = dbusOutput dbus
|
|
||||||
, ppCurrent = withBG bg2
|
|
||||||
, ppVisible = withBG bg2
|
|
||||||
, ppUrgent = withFG red
|
|
||||||
, ppLayout = removeWord "Hinted" . removeWord "Spacing" . withFG purple
|
|
||||||
, ppHidden = wrap " " " " . unwords . map wrapOpenWorkspaceCmd . words
|
|
||||||
, ppWsSep = ""
|
|
||||||
, ppSep = " | "
|
|
||||||
, ppExtras = []
|
|
||||||
, ppTitle = withFG aqua . (shorten 40)
|
|
||||||
}
|
|
||||||
where
|
|
||||||
removeWord substr = unwords . filter (/= substr) . words
|
|
||||||
withBG col = wrap ("%{B" ++ col ++ "} ") " %{B-}"
|
|
||||||
withFG col = wrap ("%{F" ++ col ++ "} ") " %{F-}"
|
|
||||||
wrapOpenWorkspaceCmd wsp
|
|
||||||
| all isDigit wsp = wrapOnClickCmd ("xdotool key super+" ++ wsp) wsp
|
|
||||||
| otherwise = wsp
|
|
||||||
wrapOnClickCmd command = wrap ("%{A1:" ++ command ++ ":}") "%{A}"
|
|
||||||
|
|
||||||
-- Emit a DBus signal on log updates
|
|
||||||
dbusOutput :: D.Client -> String -> IO ()
|
|
||||||
dbusOutput dbus str = do
|
|
||||||
let signal = (D.signal objectPath interfaceName memberName) {
|
|
||||||
D.signalBody = [D.toVariant $ UTF8.decodeString str]
|
|
||||||
}
|
|
||||||
D.emit dbus signal
|
|
||||||
where
|
|
||||||
objectPath = D.objectPath_ "/org/xmonad/Log"
|
|
||||||
interfaceName = D.interfaceName_ "org.xmonad.Log"
|
|
||||||
memberName = D.memberName_ "Update"
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
Loading…
Reference in a new issue