civodul pushed a commit to branch master
in repository guix.
commit c7af96871737ffa0e2be879e200573bc60603c8c
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Apr 2 11:17:37 2020 +0200
system: Add xterm to lightweight-desktop example.
That makes ratpoison more usable, for instance.
* gnu/system/examples/lightweight-desktop.tmpl (packages): Add XTERM.
---
gnu/system/examples/lightweight-desktop.tmpl | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/system/examples/lightweight-desktop.tmpl
b/gnu/system/examples/lightweight-desktop.tmpl
index 45d9bf4..20b122f 100644
--- a/gnu/system/examples/lightweight-desktop.tmpl
+++ b/gnu/system/examples/lightweight-desktop.tmpl
@@ -5,6 +5,7 @@
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules bootloaders certs ratpoison suckless wm)
+(use-package-modules bootloaders certs ratpoison suckless wm xorg)
(operating-system
(host-name "antelope")
@@ -43,6 +44,8 @@
(packages (append (list
;; window managers
ratpoison i3-wm i3status dmenu
+ ;; terminal emulator
+ xterm
;; for HTTPS access
nss-certs)
%base-packages))