aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(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)))
to 3.0.1....Tanguy Le Carrour 2021-01-11gnu: Add mcg....Noah Evans 2021-01-09gnu: ncmpcpp: Update to 0.9.1....Leo Famulari 2020-11-11gnu: mpd: Update to 0.22.3....Tobias Geerinckx-Rice 2020-11-04gnu: Add Cantata....Simon Streit 2020-11-03gnu: Depend on 'gettext-minimal' rather than 'gettext' when appropriate....Ludovic Courtès 2020-11-01gnu: ncmpc: Update to 0.42....Tobias Geerinckx-Rice 2020-11-01gnu: mpd: Update to 0.22.2....Tobias Geerinckx-Rice 2020-10-25gnu: Add mpdris2...Lars-Dominik Braun 2020-10-23gnu: MPD: Update to 0.22.1....Leo Famulari 2020-10-17gnu: ncmpc: Update to 0.41....Tobias Geerinckx-Rice 2020-10-15gnu: mpd: Update to 0.22....Ricardo Wurmus 2020-10-13gnu: ncmpc: Update to 0.40....Tobias Geerinckx-Rice 2020-09-23gnu: mpdscribble: Update to 0.23....Tobias Geerinckx-Rice 2020-09-23gnu: mpdscribble: Order inputs alphabetically....Tobias Geerinckx-Rice 2020-09-23gnu: mpd: Update to 0.21.26....Tobias Geerinckx-Rice 2020-08-28gnu: ncmpc: Update to 0.39....Tobias Geerinckx-Rice 2020-07-19gnu: MPD: Update to 0.21.25....Leo Famulari 2020-07-19gnu: libmpdclient: Update to 2.19....Leo Famulari 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-07-01gnu: mpd: Update to 0.21.24....Tobias Geerinckx-Rice 2020-06-23gnu: sonata: Don't use unstable tarball....Efraim Flashner