diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Layout/ImageButtonDecoration.hs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/XMonad/Layout/ImageButtonDecoration.hs b/XMonad/Layout/ImageButtonDecoration.hs index 5e30044..c8d8453 100644 --- a/XMonad/Layout/ImageButtonDecoration.hs +++ b/XMonad/Layout/ImageButtonDecoration.hs @@ -81,16 +81,16 @@ convertToBool :: [[Int]] -> [[Bool]] convertToBool = map convertToBool' menuButton' :: [[Int]] -menuButton' = [[0,0,0,0,1,1,0,0,0,0], - [0,0,0,1,1,1,1,0,0,0], - [0,0,1,1,0,0,1,1,0,0], - [0,1,1,0,0,0,0,1,1,0], - [1,1,0,0,1,1,0,0,1,1], - [1,1,0,0,1,1,0,0,1,1], - [0,1,1,0,0,0,0,1,1,0], - [0,0,1,1,0,0,1,1,0,0], - [0,0,0,1,1,1,1,0,0,0], - [0,0,0,0,1,1,0,0,0,0]] +menuButton' = [[1,1,1,1,1,1,1,1,1,1], + [1,1,1,1,1,1,1,1,1,1], + [1,1,0,0,0,0,0,0,1,1], + [1,1,0,0,0,0,0,0,1,1], + [1,1,1,1,1,1,1,1,1,1], + [1,1,1,1,1,1,1,1,1,1], + [1,1,1,1,1,1,1,1,1,1], + [1,1,1,1,1,1,1,1,1,1], + [1,1,1,1,1,1,1,1,1,1], + [1,1,1,1,1,1,1,1,1,1]] menuButton :: [[Bool]] menuButton = convertToBool menuButton' |