Fix Rofi Staying Open Issue & Change Lock Screen Text

- Fix issue where rofi would stay open after selecting a session
  management option (e.g. lock) which would prevent screen from locking
- Change lock screen text to say "Enter password to unlock..."
This commit is contained in:
Sravan Balaji
2021-08-19 14:17:24 -04:00
parent 739900bf55
commit ac230e958e
3 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ rofi_menu() {
option=$(printf '%s\n' "${choice}" | awk '{print $NF}')
if [[ "$option" != "quit" ]]; then
main "--$option"
main "--$option" && killall rofi
fi
}