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
What does not
Workarounds
Uncheck "Allow the window manager to decorate the windows" in Graphics tab in winecfg to prevent flicker
What was not tested
Hardware tested
Graphics:
Additional Comments
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