Add alias to check SSL cert info.

This commit is contained in:
Captain ALM 2024-11-28 11:13:50 +00:00
parent 772287c27f
commit f597d0e2ed
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

View File

@ -14,6 +14,9 @@ alias screen-off="sleep 0.1 && xset dpms force off"
alias boot-sign-verify="sudo sign-boot && sudo verify-boot"
alias rdp-session-desktop-cvd="xfreerdp3 ~/Downloads/SessionDesktop.rdpw /gateway:type:arm /sec:aad +clipboard /w:1920 /h:1000 +auto-reconnect"
alias pulse-restart="systemctl --user stop pulseaudio.socket pulseaudio.service && sleep 1 && systemctl --user start pulseaudio.socket pulseaudio.service"
function ssl-server-cert() {
keytool -printcert -sslserver "$1";
}
function conda-activate() {
eval "$(~/anaconda3/bin/conda shell.bash hook)";
}