mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-01 00:30:58 +02:00
Add auto screen lock on yubikey remove
This commit is contained in:
parent
a20cef8319
commit
c501700ee0
43
.config/pam_pkcs11/card_eventmgr.conf
Normal file
43
.config/pam_pkcs11/card_eventmgr.conf
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
card_eventmgr {
|
||||||
|
|
||||||
|
# Run in background? Implies debug=false if set to true
|
||||||
|
daemon = false;
|
||||||
|
|
||||||
|
# show debug messages?
|
||||||
|
debug = false;
|
||||||
|
|
||||||
|
# polling time in milliseconds
|
||||||
|
timeout = 1000;
|
||||||
|
|
||||||
|
#
|
||||||
|
# list of events and actions
|
||||||
|
|
||||||
|
# Card inserted
|
||||||
|
event card_insert {
|
||||||
|
# what to do if an action fail?
|
||||||
|
# ignore : continue to next action
|
||||||
|
# return : end action sequence
|
||||||
|
# quit : end program
|
||||||
|
on_error = return ;
|
||||||
|
|
||||||
|
# You can enter several, comma-separated action entries
|
||||||
|
# they will be executed in turn
|
||||||
|
action =
|
||||||
|
"gpg-connect-agent 'SCD SERIALNO' /bye | grep -q 'S SERIALNO'",
|
||||||
|
"pacat --volume=65536 --file-format=oga /usr/share/sounds/freedesktop/stereo/device-added.oga",
|
||||||
|
"swaymsg 'output * dpms on'", "echo UNLOCK";
|
||||||
|
}
|
||||||
|
|
||||||
|
# Card has been removed
|
||||||
|
event card_remove {
|
||||||
|
on_error = return ;
|
||||||
|
action =
|
||||||
|
"if gpg-connect-agent 'SCD SERIALNO' /bye | grep -q 'S SERIALNO'; then sleep 1; if gpg-connect-agent 'SCD SERIALNO' /bye | grep -q 'S SERIALNO'; then exit 1; else exit 0; fi; fi",
|
||||||
|
"pacat --volume=65536 --file-format=oga /usr/share/sounds/freedesktop/stereo/device-removed.oga",
|
||||||
|
"loginctl lock-sessions", "echo LOCK";
|
||||||
|
}
|
||||||
|
|
||||||
|
# Too much time locked session
|
||||||
|
event timeout {
|
||||||
|
}
|
||||||
|
}
|
@ -21,12 +21,7 @@ font pango:xos4 Terminus 12
|
|||||||
set $bg "~/Pildid/background.png"
|
set $bg "~/Pildid/background.png"
|
||||||
|
|
||||||
# Uses forked swaylock https://github.com/mortie/swaylock-effects
|
# Uses forked swaylock https://github.com/mortie/swaylock-effects
|
||||||
set $lockcmd swaylock --clock --datestr "%Y-%m-%d" --indicator \
|
set $lockcmd swaylock --clock --datestr "%Y-%m-%d" --indicator --image $bg --tiling --hide-keyboard-layout --font "xos4 Terminus" --font-size 28 --text-color ffffff --inside-color 435366 --separator-color 435366 --ring-color 435366 --line-uses-ring
|
||||||
--image ~/Pildid/background.png --tiling \
|
|
||||||
--hide-keyboard-layout --font 'xos4 Terminus' --font-size 28 \
|
|
||||||
--text-color ffffff \
|
|
||||||
--inside-color 435366 --separator-color 435366 --ring-color 435366 \
|
|
||||||
--line-uses-ring
|
|
||||||
|
|
||||||
# Your preferred terminal emulator
|
# Your preferred terminal emulator
|
||||||
set $term gnome-terminal
|
set $term gnome-terminal
|
||||||
@ -61,6 +56,8 @@ exec ~/.bin/polkit-agent
|
|||||||
# Dropbox
|
# Dropbox
|
||||||
exec ~/code/dropbox-filesystem-fix/dropbox_start.py
|
exec ~/code/dropbox-filesystem-fix/dropbox_start.py
|
||||||
|
|
||||||
|
# React to smart card events
|
||||||
|
exec card_eventmgr config_file=.config/pam_pkcs11/card_eventmgr.conf
|
||||||
|
|
||||||
### Idle configuration
|
### Idle configuration
|
||||||
exec swayidle \
|
exec swayidle \
|
||||||
|
Loading…
Reference in New Issue
Block a user