mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-22 12:39:49 +00:00
9 lines
264 B
Bash
Executable File
9 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source /etc/default/bazzite
|
|
if [[ ${BASE_IMAGE_NAME} == 'kinoite' ]]; then
|
|
SUDO_ASKPASS='/usr/bin/ksshaskpass'
|
|
elif [[ ${BASE_IMAGE_NAME} == 'silverblue' ]]; then
|
|
SUDO_ASKPASS='/usr/libexec/openssh/gnome-ssh-askpass'
|
|
fi
|
|
export SUDO_ASKPASS
|