changed default web browser an added do full float to steam

master
Kerem Yollu 3 years ago
parent 5c80d8f666
commit 037484bd40

@ -29,6 +29,14 @@ myTerminal = "alacritty"
myShell :: String
myShell = "fish"
-- KeY Defined default web browser the sapce at the end is important.
myBrowser :: String
myBrowser = "qutebrowser "
-- KeY Defined default App Launcher.
myLauncher :: String
myLauncher = "dmenu_run "
-- KeY Defined Whether focus follows the mouse pointer.
myFocusFollowsMouse :: Bool
myFocusFollowsMouse = True
@ -71,11 +79,11 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
-- KeY Defined : Toggle mute
, ((modm, xK_F1 ), spawn "amixer -D pulse set Master 1+ toggle")
-- KeY Defined : Launch (d)menu
, ((modm, xK_d ), spawn "dmenu_run")
-- KeY Defined : Launch (p)rogramms
, ((modm, xK_p ), spawn $ (myLauncher))
-- KeY Defined : Launch (i)nternet Explorer
, ((modm, xK_i ), spawn "brave-browser")
, ((modm, xK_i ), spawn $ (myBrowser))
-- KeY Defined : (c)lose focused window
, ((modm, xK_c ), kill)
@ -217,11 +225,12 @@ myLayout = avoidStruts (tiled ||| Mirror tiled ||| Full)
-- KeY Defined
myManageHook = composeAll
[ className =? "MPlayer" --> doFloat
, className =? "Gimp" --> doFloat
, className =? "Steam" --> doFullFloat
, resource =? "desktop_window" --> doIgnore
, resource =? "kdesktop" --> doIgnore
[ className =? "MPlayer" --> doFloat
, className =? "Gimp" --> doFloat
, className =? "Steam" --> doFullFloat
, className =? "TerraTechLinux64.x86_64" --> doFullFloat
, resource =? "desktop_window" --> doIgnore
, resource =? "kdesktop" --> doIgnore
, manageDocks
]

Loading…
Cancel
Save