mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
over pararenthesised arty fibonacci
This commit is contained in:
parent
ab1f382566
commit
2b7a8d06da
@ -40,7 +40,7 @@ import XMonad.StackSet ( integrate )
|
||||
-- %layout , Layout $ spiral (1 % 1)
|
||||
|
||||
fibs :: [Integer]
|
||||
fibs = 1 : 1 : (zipWith (+) fibs (tail fibs))
|
||||
fibs = 1 : 1 : zipWith (+) fibs (tail fibs)
|
||||
|
||||
mkRatios :: [Integer] -> [Rational]
|
||||
mkRatios (x1:x2:xs) = (x1 % x2) : mkRatios (x2:xs)
|
||||
|
Loading…
x
Reference in New Issue
Block a user