Hello,
I pulled up the Rofi script at “./bin/rofr.sh”, so that I could attempt to remove the mini screen capture backdrop behind the ArchLabs logo for i3lock-fancy.
Upon analyzing I noticed that the following command was listed:
-l|–logout)
ANS="$(rofi -sep “|” -dmenu -i -p ‘System’ -width 20
-hide-scrollbar -line-padding 4 -padding 20
-lines 4 <<< “ Lock| Logout| Reboot| Shutdown”)"
case “$ANS” in
*Lock) i3lock-fancy ;;
*Logout) session-logout || pkill -15 -t tty"$XDG_VTNR" Xorg ;;
*Reboot) systemctl reboot ;;
*Shutdown) systemctl -i poweroff
esac ;;
*) echo; echo “Option does not exist: $arg”; echo; exit 2
esac
done
i3lock-fancy doesn’t appear to specify anything that would tag on the mini backdrop.
Is there another script this script calls to and perhaps I am missing this?
When typing i3lock-fancy in a terminal, the mini backdrop is removed.
Thanks!