update xmonad : mirage, joplin
This commit is contained in:
parent
27ece20a9d
commit
002fe55417
2 changed files with 13 additions and 1 deletions
|
@ -26,6 +26,8 @@ let
|
||||||
nixStartAlbert = "${pkgs.albert}/bin/albert"
|
nixStartAlbert = "${pkgs.albert}/bin/albert"
|
||||||
nixStartCopyq = "${pkgs.copyq}/bin/copyq"
|
nixStartCopyq = "${pkgs.copyq}/bin/copyq"
|
||||||
nixShowCopyq = "${pkgs.copyq}/bin/copyq show"
|
nixShowCopyq = "${pkgs.copyq}/bin/copyq show"
|
||||||
|
nixShowChat = "${pkgs.mirage-im}/bin/mirage"
|
||||||
|
nixShowJoplin = "${pkgs.unstable.joplin-desktop}/bin/joplin-desktop"
|
||||||
nixStartTerminal = "${pkgs.rxvt_unicode}/bin/urxvtc"
|
nixStartTerminal = "${pkgs.rxvt_unicode}/bin/urxvtc"
|
||||||
nixAlsaRaiseVolume = "${pkgs.alsaUtils}/bin/amixer set Master 5%+"
|
nixAlsaRaiseVolume = "${pkgs.alsaUtils}/bin/amixer set Master 5%+"
|
||||||
nixAlsaLowerVolume = "${pkgs.alsaUtils}/bin/amixer set Master 5%-"
|
nixAlsaLowerVolume = "${pkgs.alsaUtils}/bin/amixer set Master 5%-"
|
||||||
|
|
|
@ -81,7 +81,7 @@ myLayout =
|
||||||
-- default workspaces they will always be there.
|
-- default workspaces they will always be there.
|
||||||
-- And they are protected against renaming
|
-- And they are protected against renaming
|
||||||
myWorkspaces :: [String]
|
myWorkspaces :: [String]
|
||||||
myWorkspaces = ["1", "2", "3", "4"]
|
myWorkspaces = ["1", "2", "3", "4", "5", "6"]
|
||||||
|
|
||||||
-- workspaces names to be used only by one program, partly spawning on startup.
|
-- workspaces names to be used only by one program, partly spawning on startup.
|
||||||
autoSpawnWorkspaces :: [String]
|
autoSpawnWorkspaces :: [String]
|
||||||
|
@ -111,6 +111,16 @@ projects =
|
||||||
, projectDirectory = "~/"
|
, projectDirectory = "~/"
|
||||||
, projectStartHook = Just $ spawn nixShowCopyq
|
, projectStartHook = Just $ spawn nixShowCopyq
|
||||||
}
|
}
|
||||||
|
, Project
|
||||||
|
{ projectName = "chat"
|
||||||
|
, projectDirectory = "~/"
|
||||||
|
, projectStartHook = Just $ spawn nixShowChat
|
||||||
|
}
|
||||||
|
, Project
|
||||||
|
{ projectName = "joplin"
|
||||||
|
, projectDirectory = "~/"
|
||||||
|
, projectStartHook = Just $ spawn nixShowJoplin
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
-- ------------------------------------------------------------
|
-- ------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue