Patch sddm login screen to show hostname.

This commit is contained in:
Andreas B. Mundt 2023-09-06 19:30:32 +02:00
parent 0a85b1ee01
commit f51bfa1e30

View file

@ -150,3 +150,17 @@
# Autolock=false
# LockOnResume=false
#
- name: Patch sddm login screen to show hostname
blockinfile:
path: /usr/share/sddm/themes/debian-breeze/Main.qml
marker: // {mark} ANSIBLE MANAGED BLOCK
insertbefore: '\s+Battery {'
block: |
Text {
color: "#ffffff"
text: sddm.hostName
anchors.right: parent.right
anchors.rightMargin: 10
font.pointSize: config.fontSize
}