13 lines
242 B
Bash
Executable File
13 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
|
|
|
# berry directory
|
|
DIR="$HOME/.config/berry"
|
|
|
|
# rofi sudo askpass helper
|
|
export SUDO_ASKPASS="$DIR"/scripts/rofi_askpass
|
|
|
|
# execute the application
|
|
sudo -A $1
|