[bin] format and correct comments
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Lucien Cartier-Tilet 2023-06-15 14:23:55 +02:00
parent 7b0833252a
commit c4c80945e8
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA

View File

@ -225,8 +225,8 @@ fi
# If the current session is Wayland, copy with wl-copy, otherwise copy with xclipboard # If the current session is Wayland, copy with wl-copy, otherwise copy with xclipboard
if [ "$XDG_SESSION_TYPE" = "wayland" ] if [ "$XDG_SESSION_TYPE" = "wayland" ]
then printf '%s' "$choice" | wc-copy # X11 then printf '%s' "$choice" | wc-copy # Wayland
else printf '%s' "$choice" | xclip -sel clip # Wayland else printf '%s' "$choice" | xclip -sel clip # X11
fi fi
# We're done! # We're done!