about summary refs log tree commit diff
path: root/src/lib/XMonad/Custom/Projects.hs
blob: c57b4e3533d6fe60ab6aa49903a4fc449dc74a1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- |
-- Module                  : XMonad.Custom.Projects
-- Description             : Per-project workspaces
-- Copyright               : (c) Azat Bahawi 2018-2022
-- SPDX-License-Identifier : GPL-3.0-or-later
-- Maintainer              : azat@bahawi.net
-- Stability               : experimental
-- Portability             : non-portable
--

module XMonad.Custom.Projects
  ( projects
  ) where

import           XMonad.Actions.DynamicProjects

projects :: [Project]
projects =
  [ Project { projectName      = "Template"
            , projectDirectory = "~/"
            , projectStartHook = Nothing
            }
  ]

Consider giving Nix/NixOS a try! <3