blob: 3fbf6a96045804e7f779a54e62090540d96fb3f8 (
plain)
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
|
#!/bin/bash
build() {
# get default theme settings
local PLYMOUTH_THEME_NAME=$(plymouth-set-default-theme)
local PLYMOUTH_THEME_DIR="/usr/share/plymouth/themes/$PLYMOUTH_THEME_NAME"
local PLYMOUTH_IMAGE_DIR=$(sed -n "s/^ *ImageDir *= *//p" "$PLYMOUTH_THEME_DIR/$PLYMOUTH_THEME_NAME.plymouth")
local PLYMOUTH_FONT_NAME=$(sed -n "s/^ *Font *= *//p" "$PLYMOUTH_THEME_DIR/$PLYMOUTH_THEME_NAME.plymouth" | sed -e 's/ [0-9]\+ *$//' -e 's/ \(Regular\|Bold\|Italic\|Bold Italic\|Oblique\|Bold Oblique\|Thin\|Light\|Extra Bold\) *$/:style=\1/')
local PLYMOUTH_FONT_PATH=$(fc-match -f %{file} "$PLYMOUTH_FONT_NAME")
local PLYMOUTH_TITLE_FONT_NAME=$(sed -n "s/^ *TitleFont *= *//p" "$PLYMOUTH_THEME_DIR/$PLYMOUTH_THEME_NAME.plymouth" | sed -e 's/ [0-9]\+ *$//' -e 's/ \(Regular\|Bold\|Italic\|Bold Italic\|Oblique\|Bold Oblique\|Thin\|Light\|Extra Bold\) *$/:style=\1/')
local PLYMOUTH_TITLE_FONT_PATH=$(fc-match -f %{file} "$PLYMOUTH_TITLE_FONT_NAME")
local PLYMOUTH_MONOSPACE_FONT_NAME=$(sed -n "s/^ *MonospaceFont *= *//p" "$PLYMOUTH_THEME_DIR/$PLYMOUTH_THEME_NAME.plymouth" | sed -e 's/ [0-9]\+ *$//' -e 's/ \(Regular\|Bold\|Italic\|Bold Italic\|Oblique\|Bold Oblique\|Thin\|Light\|Extra Bold\) *$/:style=\1/')
if [ -n "$PLYMOUTH_MONOSPACE_FONT_NAME" ]; then
local PLYMOUTH_MONOSPACE_BASE_FONT_NAME=$(fc-match -f %{family} "$PLYMOUTH_MONOSPACE_FONT_NAME" | sed 's/,.*//')
local PLYMOUTH_MONOSPACE_FONT_PATH=$(fc-match -f %{file} "$PLYMOUTH_MONOSPACE_BASE_FONT_NAME")
local PLYMOUTH_MONOSPACE_BOLD_FONT_PATH=$(fc-match -f %{file} "$PLYMOUTH_MONOSPACE_BASE_FONT_NAME:weight=bold")
else
local PLYMOUTH_MONOSPACE_FONT_PATH=$(fc-match -f %{file} monospace)
local PLYMOUTH_MONOSPACE_BOLD_FONT_PATH=$(fc-match -f %{file} monospace:weight=bold)
fi
# copy helper binary
if [ -f '/lib/plymouth/plymouthd-fd-escrow' ]; then
add_file '/lib/plymouth/plymouthd-fd-escrow'
fi
# copy fonts
if [ -n "$PLYMOUTH_FONT_PATH" ]; then
add_file "$PLYMOUTH_FONT_PATH"
fi
if [ -n "$PLYMOUTH_TITLE_FONT_PATH" ]; then
add_file "$PLYMOUTH_TITLE_FONT_PATH"
fi
if [ -n "$PLYMOUTH_MONOSPACE_FONT_PATH" ]; then
add_file "$PLYMOUTH_MONOSPACE_FONT_PATH"
add_file "$PLYMOUTH_MONOSPACE_BOLD_FONT_PATH"
fi
# copy configured theme
if [ -d "$PLYMOUTH_THEME_DIR" ]; then
add_full_dir "$PLYMOUTH_THEME_DIR"
fi
# copy images for the configured theme
if [ "$PLYMOUTH_IMAGE_DIR" != "$PLYMOUTH_THEME_DIR" -a -d "$PLYMOUTH_IMAGE_DIR" ]; then
add_full_dir "$PLYMOUTH_IMAGE_DIR"
fi
}
help() {
cat <<HELPEOF
This hook includes fonts and a helper binary in shutdown initramfs for
Plymouth. This is needed to display the console messages during shutdown and to
hold on to the pixel-displays fds until the end.
HELPEOF
}
|