mirror of
https://github.com/you-dont-need/You-Dont-Need-GUI.git
synced 2025-01-17 13:28:20 +01:00
Fix " force quit a program" to send SIGKILL
Running `killall program_name` sends a SIGTERM signal, which a program is free to ignore: > The sig argument is the value specified by the -s option, - signal_number option, or the - signal_name option, or by SIGTERM, if none of these options is specified. https://pubs.opengroup.org/onlinepubs/9699919799/utilities/kill.html To send a SIGKILL signal, you need to use `killall -9` or `killall -KILL`, which cannot be ignored.
This commit is contained in:
parent
8f87e8f25b
commit
9b87ef87df