xmonadでキーボードショートカットをバインドして特定のアプリケーションに集中する方法は?

xmonadでキーボードショートカットをバインドして特定のアプリケーションに集中する方法は?

たとえば、バインディングMod++を使用すると、クラス名が「Emacs」のウィンドウに移動し、現在のワークスペースに焦点を当てているウィンドウに関係なく、すぐにそのアプリケーションに切り替えることができますShiftm

ベストアンサー1

https://stackoverflow.com/a/50427647/1663462

module WindowFinder where

import XMonad
import qualified XMonad.StackSet as W
import Control.Monad
import Data.Bool  (bool)

findWindows :: String -> X [Window]
findWindows name = do
  withWindowSet $ (\ws -> do
    forM (W.allWindows ws)
      (\w -> do
            s <- withDisplay $ \d -> fmap resClass . liftIO $ getClassHint d w
            return $ bool [] [w] (s == name) :: X [Window]
      ) >>= return . join
    )

上記のモジュールをインポートした後、次のキーバインディングを設定できます。

          , ((modm, xK_c), do
            win' <- findWindows "Chromium"
            when (length win' > 0)
              (windows $ W.focusWindow $ head win')
          )

おすすめ記事