add WIP IS_OS_LINUX

This commit is contained in:
Hansjörg Hofer 2024-01-16 20:10:51 +01:00
parent 7527bcb708
commit f206cf78b5
1 changed files with 5 additions and 1 deletions

View File

@ -246,8 +246,12 @@ public class ProcessesForm {
return icon;
}
if (SystemUtils.IS_OS_LINUX) {
// investigate why getPath or getCommandLine is "" on kali
}
// macOS-specific icon retrieval
// maybe find a simple solution
// maybe find a simpler solution
// Todo : fix various icons like VLC ...
if (SystemUtils.IS_OS_MAC && fullProcessPathName.contains("MacOS")) {
String iconPathSplit = fullProcessPathName.split("MacOS")[0];