Version 5 series (End-of-Life)
Application Details:
Version: | v5.x (EOL) |
License: | Free to use |
URL: | https://line.me/ |
Votes: | Marked as obsolete |
Latest Rating: | Silver |
Latest Wine Version Tested: | 5.17 |
Maintainers: About Maintainership
What works
Installation
Send and receive text messages
Send files
Voice call
What does not
Video call
Workarounds
What was not tested
Sign up
Hardware tested
Graphics:
Additional Comments
Tested LINE version is 5.3.0.1506 Window border stays on top of other windows
Operating system | Test date | Wine version | Installs? | Runs? | Used Workaround? | Rating | Submitter | ||
Show | Arch Linux x86_64 | Nov 25 2020 | 5.17 | Yes | Yes | Yes | Silver | Natan Hari Pamungkas | |
Show | opensuse leap 15.1 | May 10 2020 | 5.8 | Yes | No | No | Garbage | Zhang Jiahao | |
Show | opensuse leap 15.1 | May 10 2020 | 5.8-staging | Yes | No | No | Garbage | Zhang Jiahao | |
Show | opensuse leap 15.1 | Apr 27 2020 | 5.7-staging | Yes | No | No | Garbage | Zhang Jiahao | |
Show | opensuse leap 15.1 | Apr 27 2020 | 5.7 | Yes | No | No | Garbage | Zhang Jiahao |
The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
by RX6900XT on Thursday October 6th 2022, 4:32
start_succ=false
for i in {1..5}
do
xdotool search --onlyvisible --classname "line.exe"
if [ $? == 0 ]
then
start_succ=true
break
fi
sleep 1
done
if [ $start_succ == false ]
then
exit 1
fi
windowclose=false
while :
do
retval=$(xdotool search --onlyvisible --classname "line.exe")
if [ $? != 0 ]
then
exit 0
fi
login=true
for id in $retval
do
windowname=$(xdotool getwindowname $id)
if [ "$windowname" == "Log In" ]
then
login=false
fi
if [ $windowclose == true ] && ([ "$windowname" == "" ] || [ "$windowname" == "ChatContactMenu" ])
then
xdotool windowclose $id
fi
done
if [ $windowclose == true ]
then
exit 0
fi
if [ $login == true ]
then
windowclose=true
fi
sleep 1
done