From 178e21b34d1a0bcfe916674d277e1196d1cba00c Mon Sep 17 00:00:00 2001 From: Sho Date: Sun, 2 Aug 2026 16:24:14 +0900 Subject: [PATCH] =?UTF-8?q?style(lockscreen):=20replace=20emojis=20with=20?= =?UTF-8?q?Nerd=20Font=20icons=20(Sleep:=20=F3=B0=92=B2,=20Restart:=20?= =?UTF-8?q?=F3=B0=9C=89,=20Power=20Off:=20=F3=B0=90=A5)=20for=20session=20?= =?UTF-8?q?controls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- quickshell/modules/lockscreen/LockscreenContent.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickshell/modules/lockscreen/LockscreenContent.qml b/quickshell/modules/lockscreen/LockscreenContent.qml index fad8de9..6f30482 100644 --- a/quickshell/modules/lockscreen/LockscreenContent.qml +++ b/quickshell/modules/lockscreen/LockscreenContent.qml @@ -383,7 +383,7 @@ Item { RowLayout { anchors.centerIn: parent spacing: 8 - Text { text: "🌙"; font.pixelSize: 16 } + Text { text: "󰒲"; font.pixelSize: 18; font.family: "JetBrainsMono Nerd Font, Symbols Nerd Font, CaskaydiaCove Nerd Font, Sans-Serif"; color: Theme.accent } Text { text: "Sleep"; color: Theme.fg; font.pixelSize: 14; font.weight: Font.SemiBold } } @@ -409,7 +409,7 @@ Item { RowLayout { anchors.centerIn: parent spacing: 8 - Text { text: "🔄"; font.pixelSize: 16 } + Text { text: "󰜉"; font.pixelSize: 18; font.family: "JetBrainsMono Nerd Font, Symbols Nerd Font, CaskaydiaCove Nerd Font, Sans-Serif"; color: Theme.orange } Text { text: "Restart"; color: Theme.fg; font.pixelSize: 14; font.weight: Font.SemiBold } } @@ -435,7 +435,7 @@ Item { RowLayout { anchors.centerIn: parent spacing: 8 - Text { text: "⏻"; font.pixelSize: 16; color: Theme.red } + Text { text: "󰐥"; font.pixelSize: 18; font.family: "JetBrainsMono Nerd Font, Symbols Nerd Font, CaskaydiaCove Nerd Font, Sans-Serif"; color: Theme.red } Text { text: "Power Off"; color: Theme.fg; font.pixelSize: 14; font.weight: Font.SemiBold } }