Fore8086 Does anyone know how to create application shortcuts in DUDUOS?
You can't. The launcher does not allow it.
What you can do is create a micro apk that calls macrodroid with a certain macro, like
Intent intent = new Intent("com.arlosoft.macrodroid.TRIGGER_MACRO");
intent.putExtra("macro_name", "MyFabulousMacro");
sendBroadcast(intent);
And assign this apk to an SWC key.
Or create an apk with multiple launch activities and assign a macro to each activity. The activities should be visible as separate apps.