File: reboot-halt.lisp

package info (click to toggle)
clfswm 20111015.git51b0a02-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 1,624 kB
  • sloc: lisp: 14,797; sh: 302; makefile: 17
file content (79 lines) | stat: -rw-r--r-- 2,587 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
;;; --------------------------------------------------------------------------
;;; CLFSWM - FullScreen Window Manager
;;;
;;; --------------------------------------------------------------------------
;;; Documentation: Reboot and halt menu
;;; --------------------------------------------------------------------------
;;;
;;; (C) 2011 Philippe Brochard <hocwp@free.fr>
;;;
;;; This program 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.
;;;
;;; This program 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 this program; if not, write to the Free Software
;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;;
;;; Documentation: If you want to use this file, just add this line in
;;; your configuration file:
;;;
;;;   (load-contrib "mpd.lisp")
;;;
;;; --------------------------------------------------------------------------

(in-package :clfswm)

(format t "Loading Reboot/Halt code... ")


(defun reboot-halt-menu ()
  "Open the Reboot/Halt menu"
  (open-menu (find-menu 'reboot-halt-menu)))


(defun do-with-terminal (command)
  (do-shell (format nil "x-terminal-emulator -e '~A'" command)))
;;(do-shell (format nil "xterm -e 'echo ~A; sleep 3'" command)))  ;; test

(defun do-nothing ()
  "Do nothing"
  ())

(defun do-suspend ()
  "Suspend the computer to RAM"
  (do-with-terminal "sudo pm-suspend"))

(defun do-hibernate ()
  "Suspend the computer to DISK"
  (do-with-terminal "sudo pm-hibernate"))

(defun do-reboot ()
  "Reboot the computer"
  (do-with-terminal "sudo reboot"))

(defun do-halt ()
  "Halt the computer"
  (do-with-terminal "sudo halt"))

(unless (find-menu 'reboot-halt-menu)
  (add-sub-menu 'clfswm-menu "Pause" 'reboot-halt-menu "Suspend/Reboot/Halt menu")
  (add-menu-key 'reboot-halt-menu "-" 'do-nothing)
  (add-menu-key 'reboot-halt-menu "s" 'do-suspend)
  (add-menu-key 'reboot-halt-menu "d" 'do-hibernate)
  (add-menu-key 'reboot-halt-menu "r" 'do-reboot)
  (add-menu-key 'reboot-halt-menu "h" 'do-halt))


(defun reboot-halt-binding ()
  (define-main-key ("Pause") 'reboot-halt-menu))

(add-hook *binding-hook* 'reboot-halt-binding)

(format t "done~%")