From 66828996c8ff2088cc957491af0643bd2e9714c3 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Sun, 28 Aug 2022 14:53:41 +0300 Subject: [PATCH] home/xmonad: remove ibus, telegram-desktop --- home/wm/xmonad/config.hs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/home/wm/xmonad/config.hs b/home/wm/xmonad/config.hs index 8fed071..a2f3c76 100644 --- a/home/wm/xmonad/config.hs +++ b/home/wm/xmonad/config.hs @@ -173,8 +173,7 @@ myLayout = avoidStruts . smartBorders $ (Mirror tiled ||| tiled ||| column3 ||| -- per-workspace layout choices. -- -- By default, do nothing. -myStartupHook = do - spawn "ibus exit" +myStartupHook = return () ------------------------------------------------------------------------ -- Status bars and logging @@ -218,8 +217,7 @@ myManageHook = composeAll , className =? "Gnome-calculator" --> doFloat , className =? "Gnome-font-viewer" --> doFloat , className =? "Org.gnome.Nautilus" --> doFloat - , resource =? "telegram-desktop" --> doShift comWs - , className =? "Thunderbird" --> doShift comWs + , className =? "KotatogramDesktop" --> doShift comWs -- my libs , resource =? "hwt" --> doFloat ]