From 773e4b6f4debd23dbd170770de8d3e611cf85c43 Mon Sep 17 00:00:00 2001 From: har0ke Date: Wed, 30 Nov 2022 00:41:53 +0100 Subject: [PATCH] Replace i3lock with i3lock-color --- .config/i3/config | 4 ++-- arch.sh | 2 +- scripts/i3lock_oke | 20 ++++++++++++++++++++ 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100755 scripts/i3lock_oke diff --git a/.config/i3/config b/.config/i3/config index 63b4269..aab1f24 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -11,7 +11,7 @@ set $terminal xterm set $mod Mod3 -set $screenlock "i3lock -c003344 -e" +set $screenlock ~/.dotfiles/scripts/i3lock_oke exec_always --no-startup-id "bash ~/.dotfiles/scripts/mod_keys" @@ -33,7 +33,7 @@ default_border pixel 1 # xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the # screen before suspend. Use loginctl lock-session to lock your screen. -exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork +exec --no-startup-id xss-lock --transfer-sleep-lock -- $screenlock --nofork # NetworkManager is the most popular way to manage wireless networks on Linux, # and nm-applet is a desktop environment-independent system tray GUI for it. diff --git a/arch.sh b/arch.sh index c7f4e66..f840d2d 100755 --- a/arch.sh +++ b/arch.sh @@ -42,7 +42,7 @@ declare -ar i3_environment=( dmenu i3-gaps i3status-rust - i3lock + i3lock-color playerctl ttf-font-awesome wmctrl diff --git a/scripts/i3lock_oke b/scripts/i3lock_oke new file mode 100755 index 0000000..9864e0f --- /dev/null +++ b/scripts/i3lock_oke @@ -0,0 +1,20 @@ +i3lock \ + -c003344 \ + --time-color=#ffffff88 \ + --date-color=#ffffff66 \ + --clock \ + --time-str="%H:%M" \ + --date-str="%d %B %Y" \ + --ignore-empty-password \ + --inside-color=00000000 \ + --insidever-color=00000000 \ + --layout-color=ff0000 \ + --line-color=00000055 \ + --wrong-color=ffffff88 \ + --wrong-text="" \ + --verif-text="..." \ + --verif-color=#ffffff66 \ + --wrong-color=#ffffff88 \ + --wrong-size=16 + +