11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# hypr directory
|
|
DIR="$HOME/.config/hypr"
|
|
|
|
# rofi sudo askpass helper
|
|
export SUDO_ASKPASS="$DIR"/scripts/rofi_askpass
|
|
|
|
# execute the application
|
|
sudo -E -A $1
|