Fullscreen bind & picom stuff

lightmode
E. Almqvist 2 years ago
parent 8fbb7029c5
commit 5a1f44c2db
  1. 1
      picom/.config/picom/picom.conf
  2. 13
      xmonad/.xmonad/xmonad.hs

@ -188,6 +188,7 @@ blur-background-exclude = [
#"window_type = 'dock'", #"window_type = 'dock'",
"window_type = 'desktop'", "window_type = 'desktop'",
"window_type = 'alacritty'", "window_type = 'alacritty'",
"window_type = 'firefox'",
"_GTK_FRAME_EXTENTS@:c" "_GTK_FRAME_EXTENTS@:c"
]; ];

@ -18,6 +18,8 @@ import XMonad.Hooks.EwmhDesktops (ewmh)
import XMonad.Hooks.InsertPosition import XMonad.Hooks.InsertPosition
import XMonad.Layout.Fullscreen (fullscreenSupport) import XMonad.Layout.Fullscreen (fullscreenSupport)
import XMonad.Layout.IndependentScreens (withScreens) import XMonad.Layout.IndependentScreens (withScreens)
import XMonad.Layout.NoBorders (noBorders)
import XMonad.Layout.ToggleLayouts (ToggleLayout(Toggle))
import qualified XMonad.StackSet as W import qualified XMonad.StackSet as W
import XMonad.Util.Run (spawnPipe) import XMonad.Util.Run (spawnPipe)
@ -115,6 +117,8 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) =
, ((modm, xK_comma), sendMessage (IncMasterN 1)) , ((modm, xK_comma), sendMessage (IncMasterN 1))
-- Deincrement the number of windows in the master area -- Deincrement the number of windows in the master area
, ((modm, xK_period), sendMessage (IncMasterN (-1))) , ((modm, xK_period), sendMessage (IncMasterN (-1)))
-- Toggle fullscreen
, ((modm .|. shiftMask, xK_f), toggleFull)
-- Toggle the status bar gap -- Toggle the status bar gap
-- Use this binding with avoidStruts from Hooks.ManageDocks. -- Use this binding with avoidStruts from Hooks.ManageDocks.
-- See also the statusBar function from Hooks.DynamicLog. -- See also the statusBar function from Hooks.DynamicLog.
@ -170,7 +174,14 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) =
-- The available layouts. Note that each layout is separated by |||, -- The available layouts. Note that each layout is separated by |||,
-- which denotes layout choice. -- which denotes layout choice.
-- --
myLayout = avoidStruts $ tiled ||| Mirror tiled ||| Full toggleFull =
withFocused $ \wid -> do
floats <- gets (W.floating . windowset)
if M.member wid floats
then withFocused $ windows . W.sink
else withFocused $ windows . (flip W.float $ W.RationalRect 0 0 1 1)
myLayout = avoidStruts $ tiled ||| Mirror tiled ||| noBorders Full
where where
-- default tiling algorithm partitions the screen into two panes -- default tiling algorithm partitions the screen into two panes
tiled = Tall nmaster delta ratio tiled = Tall nmaster delta ratio

Loading…
Cancel
Save