blob: a62b4af66d069b9975d68b03e179b973f8cb1186 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
-----------------------------------------------------------------------------
-- |
-- Module : XMonad.Custom.Workspaces
-- Copyright : (c) azahi 2018
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : azahi@teknik.io
-- Stability : unstable
-- Portability : unportable
--
------------------------------------------------------------------------
module XMonad.Custom.Workspaces
( workspaces'
) where
import XMonad.Core
workspaces' :: [WorkspaceId]
workspaces' = map show [1..9 :: Int]
|