scripts/veille.sh

61 lines
2.1 KiB
Bash
Raw Normal View History

#!/bin/sh
2014-09-22 23:00:59 +02:00
# Description: Kill all ssh connections
# Ensure to kill all ssh-agent
# Ensure to kill all gpg-agent
# Ensure to delete everything link to {ssh,gpg}-agent
# Ensure to kill all git-credential sockets
# Kill keepass2
2019-01-08 14:19:52 +01:00
# Remove cached password
# Remove recent files
# Turn off the screen
# Lock the screen
### Give an easy way to call this function with a keybind.
## For example with herbstluftwm: "hc keybind $Mod-Shift-c spawn ~/bin/veille.sh"
2014-09-22 23:00:59 +02:00
## depend: i3lock
2014-09-22 23:00:59 +02:00
# SSH Agent
killall --quiet ssh
rm --recursive --force -- ~/.ssh/socks/*
# SSH Agent - default path
killall --quiet ssh-agent
rm --recursive --force -- /tmp/ssh-*
# GPG Agent
2024-03-18 11:32:54 +01:00
command -v keychain && keychain --agents gpg --clear
2023-04-30 13:07:27 +02:00
pkill --uid="$(id -u)" -- "gpg-agent"
# Keychain - Delete everything link to ssh-agent or gpg-agent
test -d ~/.keychain && rm --recursive --force -- ~/.keychain/*
# git-credential sockets
2023-04-30 13:07:27 +02:00
pkill --uid="$(id -u)" --full -- "git-credential-cache"
rm --force -- ~/.git-credential-cache/*
# Keepass2 (killall keepass, both those launch with 'mono' and those launch with 'cli)
2023-04-30 13:07:27 +02:00
pkill --uid="$(id -u)" --full -- "keepass"
# Delete sensitive files can contains unwanted clear passwords
rm --force -- ~/.config/evince/print-settings ~/.config/eog/eog-print-settings.ini
# Delete GIMP's sensitives files
find ~/.config -ipath "*GIMP*" -and -iname "print-page-setup" -delete
find ~/.config -ipath "*GIMP*" -and -iname "print-settings" -delete
2019-01-08 14:19:52 +01:00
# Purge local user recent files
rm --force -- ~/.local/share/recently-used.xbel
rm --force -- ~/.recently-used
2023-04-30 13:07:27 +02:00
rm --force --recursive -- ~/.thumbnails/normal
rm --force -- ~/.config/vlc/vlc-qt-interface.conf
rm --force -- ~/.config/smplayer/smplayer.ini
2019-01-08 14:19:52 +01:00
2017-03-15 16:22:47 +01:00
# Turn off the screen
sleep 3; xset dpms force off
# Lock the screen
#i3lock -c 000000 --pointer win -d
2024-03-13 12:37:33 +01:00
#i3lock --image="${HOME}"/Images/system/empire_needs_you.png --pointer win --dpms --ignore-empty-password --tiling
i3lock --image="${HOME}"/Images/system/the.it.crowd.jeremy.png --pointer win --dpms --ignore-empty-password --tiling