[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
133/197: installer: Change livery.
From: |
Danny Milosavljevic |
Subject: |
133/197: installer: Change livery. |
Date: |
Mon, 3 Jul 2017 20:37:13 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit 9b4c80b69b6dd5e58ed6178b614371ae1955e1d8
Author: John Darrington <address@hidden>
Date: Sun Jan 22 20:44:36 2017 +0100
installer: Change livery.
* gnu/system/installer/misc.scm (strong-colour): New variable.
* gnu/system/installer/guixsd-installer.scm (guixsd-installer): Set a second
colour pair.
---
gnu/system/installer/guixsd-installer.scm | 4 ++--
gnu/system/installer/misc.scm | 4 +++-
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/system/installer/guixsd-installer.scm
b/gnu/system/installer/guixsd-installer.scm
index c5394df..aa6095e 100644
--- a/gnu/system/installer/guixsd-installer.scm
+++ b/gnu/system/installer/guixsd-installer.scm
@@ -287,8 +287,8 @@ tail of the list."
(start-color!)
- (init-pair! livery-title COLOR_RED COLOR_BLACK)
- (init-pair! 2 COLOR_MAGENTA COLOR_BLACK)
+ (init-pair! livery-title COLOR_MAGENTA COLOR_BLACK)
+ (init-pair! strong-colour COLOR_RED COLOR_BLACK)
(curs-set 0)
diff --git a/gnu/system/installer/misc.scm b/gnu/system/installer/misc.scm
index 5c0ad3e..4bed5b8 100644
--- a/gnu/system/installer/misc.scm
+++ b/gnu/system/installer/misc.scm
@@ -20,6 +20,7 @@
#:use-module (ncurses curses)
#:export (livery-title)
+ #:export (strong-colour)
#:export (time-zone)
#:export (host-name)
#:export (config-file)
@@ -29,6 +30,7 @@
#:export (mount-points))
(define livery-title 1)
+(define strong-colour 2)
(define mount-points '())
@@ -58,7 +60,7 @@
(acro . ,normal)
(email . ,normal)
(emph . ,dim)
- (strong . ,(lambda (x) (color 2 x)))
+ (strong . ,(lambda (x) (color strong-colour x)))
(sample . ,normal)
(sc . ,normal)
(titlefont . ,normal)
- 104/197: installer: Support btrfs, (continued)
- 104/197: installer: Support btrfs, Danny Milosavljevic, 2017/07/03
- 111/197: gurses: Change highlighting from bold to inverse., Danny Milosavljevic, 2017/07/03
- 108/197: installer: Do not add file systems which are invalid., Danny Milosavljevic, 2017/07/03
- 164/197: gurses: Use match instead of car., Danny Milosavljevic, 2017/07/03
- 170/197: installer: Remove unused procedure., Danny Milosavljevic, 2017/07/03
- 152/197: installer: New file i18n.scm., Danny Milosavljevic, 2017/07/03
- 110/197: installer: Add an explanatory text to the main page., Danny Milosavljevic, 2017/07/03
- 120/197: gurses: Mini refactor., Danny Milosavljevic, 2017/07/03
- 124/197: gurses: Populate dropdown boxes in forms using a menu., Danny Milosavljevic, 2017/07/03
- 131/197: gurses: Use inverse instead of underline for field value area., Danny Milosavljevic, 2017/07/03
- 133/197: installer: Change livery.,
Danny Milosavljevic <=
- 146/197: gurses: Use match instead of car/cdr in line-split., Danny Milosavljevic, 2017/07/03
- 147/197: gurses: In paragraph-format avoid use of car and cdr., Danny Milosavljevic, 2017/07/03
- 144/197: gurses: Avoid one more use of car and cdr., Danny Milosavljevic, 2017/07/03
- 143/197: gurses: Add predicate to test if a complex char is blank., Danny Milosavljevic, 2017/07/03
- 149/197: gurses: Add new procedure "word-endings"., Danny Milosavljevic, 2017/07/03
- 155/197: installer: Use _ instead of M_ for host-name-refresh., Danny Milosavljevic, 2017/07/03
- 160/197: installer: New convenience procedures., Danny Milosavljevic, 2017/07/03
- 158/197: installer: Correct placement of gettext call., Danny Milosavljevic, 2017/07/03
- 163/197: gurses: Cache the windows of buttons., Danny Milosavljevic, 2017/07/03
- 172/197: gurses: Update the cursor position when posting the form., Danny Milosavljevic, 2017/07/03