-------------------------------------------------------------------------------- -- | Dmenu (Rofi) Commands module XMonad.Internal.Command.DMenu ( runCmdMenu , runAppMenu , runClipMenu , runWinMenu , runNetMenu , runDevMenu , runBwMenu , runVPNMenu , runBTMenu , runShowKeys , runAutorandrMenu ) where import Control.Monad.Reader import Graphics.X11.Types import System.Directory (XdgDirectory (..), getXdgDirectory) import System.IO import XMonad.Core hiding (spawn) import XMonad.Internal.Dependency import XMonad.Internal.Notify import XMonad.Internal.Process import XMonad.Internal.Shell import XMonad.Util.NamedActions -------------------------------------------------------------------------------- -- | DMenu executables myDmenuCmd :: String myDmenuCmd = "rofi" myDmenuDevices :: String myDmenuDevices = "rofi-dev" myDmenuPasswords :: String myDmenuPasswords = "rofi-bw" myDmenuBluetooth :: String myDmenuBluetooth = "rofi-bt" myDmenuVPN :: String myDmenuVPN = "rofi-evpn" myDmenuMonitors :: String myDmenuMonitors = "rofi-autorandr" myDmenuNetworks :: String myDmenuNetworks = "networkmanager_dmenu" -------------------------------------------------------------------------------- -- | Other internal functions spawnDmenuCmd :: String -> [String] -> SometimesX spawnDmenuCmd n = sometimesExeArgs n True myDmenuCmd themeArgs :: String -> [String] themeArgs hexColor = [ "-theme-str" , "'#element.selected.normal { background-color: " ++ hexColor ++ "; }'" ] myDmenuMatchingArgs :: [String] myDmenuMatchingArgs = ["-i"] -- case insensitivity -------------------------------------------------------------------------------- -- | Exported Commands runDevMenu :: SometimesX runDevMenu = sometimesIO "device manager" (Only_ $ localExe myDmenuDevices) $ do c <- io $ getXdgDirectory XdgConfig "rofi/devices.yml" spawnCmd myDmenuDevices $ ["-c", c] ++ "--" : themeArgs "#999933" ++ myDmenuMatchingArgs runBTMenu :: SometimesX runBTMenu = sometimesExeArgs "bluetooth selector" False myDmenuBluetooth $ "-c":themeArgs "#0044bb" runBwMenu :: SometimesX runBwMenu = sometimesIO "password manager" (Only_ $ localExe myDmenuPasswords) $ spawnCmd myDmenuPasswords $ ["-c"] ++ themeArgs "#bb6600" ++ myDmenuMatchingArgs runVPNMenu :: SometimesX runVPNMenu = sometimesIO "VPN selector" (Only_ $ localExe myDmenuVPN) $ spawnCmd myDmenuVPN $ ["-c"] ++ themeArgs "#007766" ++ myDmenuMatchingArgs runShowKeys :: Always ([((KeyMask, KeySym), NamedAction)] -> X ()) runShowKeys = Option showKeysDMenu (Always fallback) where -- TODO this should technically depend on dunst fallback = const $ spawnNotify $ defNoteError { body = Just $ Text "could not display keymap" } showKeysDMenu :: SubfeatureRoot ([((KeyMask, KeySym), NamedAction)] -> X ()) showKeysDMenu = Subfeature { sfName = "keyboard shortcut menu" , sfData = IORoot_ showKeys $ Only_ $ sysExe myDmenuCmd , sfLevel = Warn } showKeys :: [((KeyMask, KeySym), NamedAction)] -> X () showKeys kbs = io $ do (h, _, _, _) <- createProcess' $ (shell' cmd) { std_in = CreatePipe } forM_ h $ \h' -> hPutStr h' (unlines $ showKm kbs) >> hClose h' where cmd = fmtCmd myDmenuCmd $ ["-dmenu", "-p", "commands"] ++ themeArgs "#7f66ff" ++ myDmenuMatchingArgs runCmdMenu :: SometimesX runCmdMenu = spawnDmenuCmd "command menu" ["-show", "run"] runAppMenu :: SometimesX runAppMenu = spawnDmenuCmd "app launcher" ["-show", "drun"] runClipMenu :: SometimesX runClipMenu = sometimesIO "clipboard manager" deps act where act = spawnCmd myDmenuCmd args deps = toAnd (sysExe myDmenuCmd) (sysExe "greenclip") args = [ "-modi", "\"clipboard:greenclip print\"" , "-show", "clipboard" , "-run-command", "'{cmd}'" ] ++ themeArgs "#00c44e" runWinMenu :: SometimesX runWinMenu = spawnDmenuCmd "window switcher" ["-show", "window"] runNetMenu :: SometimesX runNetMenu = sometimesExeArgs "network control menu" True myDmenuNetworks $ themeArgs "#ff3333" runAutorandrMenu :: SometimesX runAutorandrMenu = sometimesExeArgs "autorandr menu" True myDmenuMonitors $ themeArgs "#ff0066"