ทำตามคำแนะนำบน Arch Linux Wiki:
https://wiki.archlinux.org/index.php/GDM#Log-in_screen_background_image
นี่คือสิ่งที่คุณต้องทำ:
1. แยก gnome-shell-theme bianry
สร้างและเรียกใช้สคริปต์ต่อไปนี้ ( /usr/local/bin/extractgst.sh
)
#!/bin/sh
workdir=${HOME}/shell-theme
if [ ! -d ${workdir}/theme ]; then
mkdir -p ${workdir}/theme
fi
gst=/usr/share/gnome-shell/gnome-shell-theme.gresource
for r in `gresource list $gst`; do
gresource extract $gst $r >$workdir/${r#\/org\/gnome\/shell/}
done
2. แก้ไข gnome-shell-theme.gresource.xml และ gnome-shell.css (ส่วน#lockDialogGroup
)
$HOME/shell-theme/theme
นี้จะสร้างไดเรกทอรี เปลี่ยนไดเรกทอรีเป็นตำแหน่งนี้
จากนั้นสร้างไฟล์gnome-shell-theme.gresource.xml
ในไดเรกทอรีด้านบน
ที่มีเนื้อหาดังต่อไปนี้ขณะที่imagefilenameต้องถูกแทนที่ด้วยชื่อไฟล์ของคุณภาพพื้นหลัง
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/org/gnome/shell/theme">
<file>imagefilename</file>
<file>calendar-arrow-left.svg</file>
<file>calendar-arrow-right.svg</file>
<file>calendar-today.svg</file>
<file>checkbox-focused.svg</file>
<file>checkbox-off-focused.svg</file>
<file>checkbox-off.svg</file>
<file>checkbox.svg</file>
<file>close-window.svg</file>
<file>close.svg</file>
<file>corner-ripple-ltr.png</file>
<file>corner-ripple-rtl.png</file>
<file>dash-placeholder.svg</file>
<file>filter-selected-ltr.svg</file>
<file>filter-selected-rtl.svg</file>
<file>gnome-shell.css</file>
<file>gnome-shell-high-contrast.css</file>
<file>logged-in-indicator.svg</file>
<file>more-results.svg</file>
<file>no-events.svg</file>
<file>no-notifications.svg</file>
<file>noise-texture.png</file>
<file>page-indicator-active.svg</file>
<file>page-indicator-inactive.svg</file>
<file>page-indicator-checked.svg</file>
<file>page-indicator-hover.svg</file>
<file>process-working.svg</file>
<file>running-indicator.svg</file>
<file>source-button-border.svg</file>
<file>summary-counter.svg</file>
<file>toggle-off-us.svg</file>
<file>toggle-off-intl.svg</file>
<file>toggle-on-hc.svg</file>
<file>toggle-on-us.svg</file>
<file>toggle-on-intl.svg</file>
<file>ws-switch-arrow-up.png</file>
<file>ws-switch-arrow-down.png</file>
</gresource>
</gresources>
ตอนนี้เปิดgnome-shell.css
-file ในไดเร็กทอรีและเปลี่ยนนิยาม #lockDialogGroup ดังนี้:
#lockDialogGroup {
background: #2e3436 url(imagefilename);
background-size: [WIDTH]px [HEIGHT]px;
background-repeat: no-repeat;
}
ตั้งค่าbackground-size
ความละเอียดที่ GDM ใช้ซึ่งอาจไม่จำเป็นต้องเป็นความละเอียดของภาพ
3. จากนั้นรวบรวมอีกครั้ง
สุดท้ายให้รวบรวมธีมโดยใช้คำสั่งต่อไปนี้:
glib-compile-resources gnome-shell-theme.gresource.xml
4. คัดลอกไฟล์ gnome-shell-theme ที่คอมไพล์แล้ว
และคัดลอกผลลัพธ์gnome-shell-theme.gresource
-file ไปยัง/usr/share/gnome-shell
ไดเรกทอรี
5. เริ่ม gdm ใหม่หรือออกจากระบบ
รีสตาร์ท gdm ในที่สุดหรือเพียงแค่ออกจากระบบ
เสร็จแล้ว!