blob: ba2a1e7e3cc1f78be199f6d5afbde3b41d398eae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
-- |
-- Module : XMonad.Custom.Workspaces
-- Description : General workspace configuration
-- Copyright : (c) Azat Bahawi 2018-2021
-- SPDX-License-Identifier : GPL-3.0-or-later
-- Maintainer : azahi@teknik.io
-- Stability : experimental
-- Portability : non-portable
--
module XMonad.Custom.Workspaces
( workspaces
) where
import XMonad.Core hiding ( workspaces )
workspaces :: [WorkspaceId]
workspaces = map show [1 .. 9 :: Int]
|