Fullscreen probably

This commit is contained in:
Sakooooo 2023-07-26 11:20:30 +03:00
parent 43c72b7432
commit f01fc540a8
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -1,11 +1,4 @@
--
-- xmonad example config file.
--
-- A template showing all available configuration hooks,
-- and how to override the defaults in your own xmonad.hs conf file.
--
-- Normally, you'd only override those defaults you care about.
--
-- Sako's Horrible Configuration
-- Main
import XMonad
@ -140,6 +133,9 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
, ((0, xF86XK_AudioLowerVolume), spawn "pactl set-sink-volume @DEFAULT_SINK@ -10%")
, ((0, xF86XK_AudioRaiseVolume), spawn "pactl set-sink-volume @DEFAULT_SINK@ +10%")
-- Fullscreen
, ((modMask, xK_f), sendMessage $ JumpToLayout "Full" )
-- Quit xmonad
, ((modm .|. shiftMask, xK_q ), io exitSuccess)