aboutsummaryrefslogtreecommitdiff
path: root/module/vulgar/info.scm
blob: 79e555da2f82ed5b798442ae3627f43b2f6ce19e (plain)
1
2
3
4
5
6
7
8
9
(define-module (vulgar info)
  :use-module (hnh util))

(define-public (get-terminal-size)
 (let* (((rpipe . wpipe) (pipe)))
   (system (format #f "stty size > /proc/~s/fd/~s"
                   (getpid) (port->fdes wpipe)))
   (values (read rpipe)
           (read rpipe))))