Adds bitwarden
This commit is contained in:
parent
e798bb5e1f
commit
a301315f2a
8 changed files with 84 additions and 15 deletions
15
.config/hypr/scripts/Toolkit.sh
Executable file
15
.config/hypr/scripts/Toolkit.sh
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/env sh
|
||||
|
||||
SCRIPTS_DIR="$HOME/.config/hypr/scripts"
|
||||
|
||||
declare -A scripts
|
||||
scripts["Shutdown"]="systemctl poweroff"
|
||||
scripts["Reboot"]="systemctl reboot"
|
||||
scripts["Logout"]="logout terminate-user $USER"
|
||||
scripts["Lock"]="$SCRIPTS_DIR/LockScreen.sh"
|
||||
scripts["Notification Center (SwayNC)"]="swaync-client -t -sw"
|
||||
|
||||
selected=$(printf "%s\n" "${!scripts[@]}" | anyrun --plugins libstdin.so)
|
||||
|
||||
command="${scripts[$selected]}"
|
||||
$command
|
||||
Loading…
Add table
Add a link
Reference in a new issue