;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Mathieu Othacehe ;;; ;;; 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 . (define-module (gnu installer newt utils) #:use-module (ice-9 receive) #:use-module (newt) #:export (screen-columns screen-rows destroy-form-and-pop set-screen-size!)) ;; Number of columns and rows of the terminal. (define screen-columns (make-parameter 0)) (define screen-rows (make-parameter 0)) (define (destroy-form-and-pop form) "Destroy the given FORM and pop the current window." (destroy-form form) (pop-window)) (define (set-screen-size!) "Set the parameters 'screen-columns' and 'screen-rows' to the number of columns and rows respectively of the current terminal." (receive (columns rows) (screen-size) (screen-columns columns) (screen-rows rows))) a43cabfafa0c97cdd44fd811'>diff
AgeCommit message (Expand)Author
2023-07-08gnu: libxapp: Use a source file-name....* gnu/packages/cinnamon.scm (libxapp)[source]: Use a source file-name. Efraim Flashner
2023-04-22gnu: libxapp: Update to 2.4.3....* gnu/packages/cinnamon.scm (libxapp): Update to 2.4.3. Nicolas Goaziou
2023-04-22gnu: Add nemo....* gnu/packages/cinnamon.scm (nemo): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> florhizome
2023-04-22gnu: cinnamon: Update to 5.6.2....* gnu/packages/cinnamon.scm (cinnamon-desktop): Update to 5.4.2. [arguments]<#:configure-flags>: Enable alsa-support. [inputs]: Remove PYTHON-2, remove GOBJECT-INTROSPECTION, add LIBEXT, ALSA-LIB. [native-inputs]: Remove gnu-build-system related packages, add GOBJECT-INTROSPECTION. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> florhizome
2023-01-22gnu: Add libxapp....* gnu/packages/cinnamon.scm (libxapp): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Wamm K. D