10 lines
202 B
Bash
Executable File
10 lines
202 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
|
|
|
## rofi sudo askpass helper
|
|
export SUDO_ASKPASS=~/.config/berry/bin/askpass.sh
|
|
|
|
## execute the application
|
|
sudo -A $1
|