mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-11-26 07:06:26 -05:00
10 lines
252 B
Bash
Executable file
10 lines
252 B
Bash
Executable file
#!/bin/bash
|
|
|
|
## Copyright (C) 2019 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
set -e
|
|
|
|
title="$0: password required for $(whoami) to perform action as superuser"
|
|
|
|
yad --password --title="$title"
|