diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2023-03-31 12:54:01 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2023-03-31 14:45:27 +0200 |
commit | 56de91b7126b906f2d8040d16a7c9fb7b7c49aca (patch) | |
tree | 3e3a537b0b06597866d6f76b24df92016335e3ae /gnu | |
parent | 1c6238794b0058003fa6c827ca0d039764ebe699 (diff) |
gnu: Add fbautostart.
* gnu/packages/wm.scm (fbautostart): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/wm.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index bcc68fbad2..4e52554b87 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1061,6 +1061,28 @@ experience.") (home-page "http://fluxbox.org/") (license license:expat))) +(define-public fbautostart + (package + (name "fbautostart") + (version "2.718281828") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/paultag/fbautostart.git") + (commit version))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "13h6j5khi5axqhflzhayzgvyhxylmk5vsgin235ji440mzd516gz")))) + (build-system gnu-build-system) + (native-inputs + (list autoconf automake)) + (synopsis "XDG autostarter for Fluxbox window manager") + (description "This package provides an autostarter complaint with +the XDG Autostart specification.") + (home-page "https://github.com/paultag/fbautostart") + (license license:expat))) + (define-public fnott (package (name "fnott") |