SHA256
1
0
forked from pool/wine
2018-05-13 16:46:26 +00:00
committed by Git OBS Bridge
parent 47bc6fdf55
commit d05bab44b8
5 changed files with 13 additions and 10 deletions

View File

@@ -8118,11 +8118,14 @@ load_icodecs()
controlclick, Button4 ; Finish
}
winwaitclose
; Dangling explorer window
winwait, Wine Explorer
sleep 1000
winclose, Wine Explorer
"
# Note, this leaves a dangling explorer window. The window name changed at some point
# because of a fixed wine bug that I'm too lazy to find. Since AHK doesn't make command line
# arguments easily accessible, we'd have to just kill all explorer.exe processes.
#
# So instead, use system kill
inode_pid="$(pgrep -f 'explorer.exe C:\\Program Files\\Ligos\\Indeo')"
kill -HUP "$inode_pid"
}
#----------------------------------------------------------------