From 43b512abb255a0bb58c35fe8cf1c938f45de6153 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 21 Oct 2016 15:44:47 -0700 Subject: [PATCH] [XMonad] Make rofi command case insensitive --- dotfiles/xmonad/xmonad.hs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dotfiles/xmonad/xmonad.hs b/dotfiles/xmonad/xmonad.hs index 2a0c6a03..60035cb6 100644 --- a/dotfiles/xmonad/xmonad.hs +++ b/dotfiles/xmonad/xmonad.hs @@ -23,13 +23,12 @@ import XMonad.Util.NamedWindows (getName) myDecorateName ws w = do name <- show <$> getName w - return $ name -- ++ " [" ++ W.tag ws ++ "]" - -myWindowBringerConfig = WindowBringerConfig{ menuCommand = "rofi" - , menuArgs = ["-dmenu"] - , windowTitler = myDecorateName - } + return $ name ++ " [" ++ W.tag ws ++ "]" +myWindowBringerConfig = WindowBringerConfig { menuCommand = "rofi" + , menuArgs = ["-dmenu", "-i"] + , windowTitler = myDecorateName + } main = xmonad $ ewmh $ pagerHints def { modMask = mod4Mask