;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Cyril Roelandt ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016 Matthew Jordan ;;; Copyright © 2017 Vasile Dumitrascu ;;; Copyright © 2017 Stefan Reichör ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Oleg Pykhalov ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/kde.scm')
0 files changed, 0 insertions, 0 deletions
(string-append "TMUXIFIER=" share "\nset -e"))) (for-each (lambda (init-script) (install-file init-script (string-append share "/init"))) '("init.sh" "init.tcsh" "init.fish")) (for-each (lambda (dir) (copy-recursively dir (string-append share "/" dir))) '("completion" "lib" "libexec" "templates")))))))) (home-page "https://github.com/jimeh/tmuxifier") (synopsis "Powerful session, window & pane management for Tmux") (description "Tmuxifier allows you to easily create, edit, and load @code{layout} files, which are simple shell scripts where you use the tmux command and helper commands provided by tmuxifier to manage Tmux sessions and windows.") (license license:expat))) (define-public tmux-xpanes (package (name "tmux-xpanes") (version "4.1.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/greymd/tmux-xpanes.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "13q02vdk229chgbn547wwv29cj4njvz02lmw840g8qmwh73qb2pi")))) (build-system trivial-build-system) (inputs `(("bash" ,bash))) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (setenv "PATH" (string-append (assoc-ref %build-inputs "bash") "/bin")) (copy-recursively (assoc-ref %build-inputs "source") ".") (substitute* "bin/xpanes" (("/bin/bash") (which "bash"))) (install-file "bin/xpanes" (string-append %output "/bin")) (install-file "man/xpanes.1" (string-append %output "/man/man1")) #t))) (home-page "https://github.com/greymd/tmux-xpanes") (synopsis "Tmux based terminal divider") (description "This package provides tmux-based terminal divider. @code{xpanes} or @code{tmux-xpanes} (alias of @code{xpanes}) commands have following features: @itemize @item Split tmux window into multiple panes. @item Build command lines & execute them on the panes. @item Runnable from outside of tmux session. @item Runnable from inside of tmux session. @item Record operation log. @item Flexible layout arrangement for panes. @item Display pane title on each pane. @item Generate command lines from standard input (Pipe mode). @end itemize") (license license:expat)))