spacemacs: add copyq project

This commit is contained in:
Ingolf Wagner 2019-10-29 11:42:28 +01:00
parent 3141861b00
commit d3e9585f58
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
3 changed files with 6 additions and 0 deletions

View file

@ -14,6 +14,7 @@ let
nixSetBackground = "${pkgs.haskellPackages.image-generator}/bin/image-generator --height ${toString height} --width ${toString width} --output /dev/shm/background.png && ${pkgs.feh}/bin/feh --bg-scale /dev/shm/background.png" nixSetBackground = "${pkgs.haskellPackages.image-generator}/bin/image-generator --height ${toString height} --width ${toString width} --output /dev/shm/background.png && ${pkgs.feh}/bin/feh --bg-scale /dev/shm/background.png"
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"
nixStartTerminal = "${pkgs.rxvt_unicode_with-plugins}/bin/urxvtc" nixStartTerminal = "${pkgs.rxvt_unicode_with-plugins}/bin/urxvtc"
''; '';
in { in {

View file

@ -137,6 +137,10 @@ projects =
, projectDirectory = "~/dev/krops" , projectDirectory = "~/dev/krops"
, projectStartHook = Nothing , projectStartHook = Nothing
} }
, Project { projectName = "-copyq"
, projectDirectory = "~/"
, projectStartHook = Just $ do spawn nixShowCopyq
}
] ]
-- ------------------------------------------------------------ -- ------------------------------------------------------------

View file

@ -12,4 +12,5 @@ nixSetCursorImage = ""
nixSetBackground = "" nixSetBackground = ""
nixStartAlbert = "" nixStartAlbert = ""
nixStartCopyq = "" nixStartCopyq = ""
nixShowCopyq = ""
nixStartTerminal = "" nixStartTerminal = ""