diff options
-rw-r--r-- | XMonad/Layout/Magnifier.hs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/XMonad/Layout/Magnifier.hs b/XMonad/Layout/Magnifier.hs index 1a69a7b..a153909 100644 --- a/XMonad/Layout/Magnifier.hs +++ b/XMonad/Layout/Magnifier.hs @@ -45,14 +45,10 @@ import XMonad.Layout.LayoutModifier -- By default magnifier increases the focused window's size by 1.5. -- You can also use: -- --- > magnifiercz (12%10) +-- > magnifiercz 1.2 -- -- to use a custom level of magnification. You can even make the focused --- window smaller for a pop in effect. Keep in mind, you must --- --- > import Data.Ratio --- --- in order to use rationals (such as @12%10@) in your config. +-- window smaller for a pop in effect. -- -- For more detailed instructions on editing the layoutHook see: -- @@ -142,4 +138,4 @@ fit (Rectangle sx sy sw sh) (Rectangle x y w h) = Rectangle x' y' w' h' h' = min sh h fi :: (Num b, Integral a) => a -> b -fi = fromIntegral
\ No newline at end of file +fi = fromIntegral |