diff --git a/Source/hoc-clk/assets/hoc.rgba b/Source/hoc-clk/assets/hoc.rgba new file mode 100644 index 00000000..c39dbae2 Binary files /dev/null and b/Source/hoc-clk/assets/hoc.rgba differ diff --git a/Source/hoc-clk/build.sh b/Source/hoc-clk/build.sh index ef12ae5a..45cd6182 100644 --- a/Source/hoc-clk/build.sh +++ b/Source/hoc-clk/build.sh @@ -36,6 +36,8 @@ echo "*** assets ***" mkdir -p "$DIST_DIR/config/horizon-oc" cp -vf "$ROOT_DIR/config.ini.template" "$DIST_DIR/config/horizon-oc/config.ini.template" cp -vf "$ROOT_DIR/../../README.md" "$DIST_DIR/README.md" +mkdir -p "$DIST_DIR/config/ultrahand/assets/notifications" +cp -vf "$ROOT_DIR/assets/hoc.rgba" "$DIST_DIR/config/ultrahand/assets/notifications/hoc.rgba" echo "*** lang ***" cp -r "$ROOT_DIR/overlay/lang/" "$DIST_DIR/config/horizon-oc/lang/" diff --git a/Source/hoc-clk/sysmodule/src/hos/notification.cpp b/Source/hoc-clk/sysmodule/src/hos/notification.cpp index 76f2f341..f6ff1c38 100644 --- a/Source/hoc-clk/sysmodule/src/hos/notification.cpp +++ b/Source/hoc-clk/sysmodule/src/hos/notification.cpp @@ -12,7 +12,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see . - * + * */ @@ -28,7 +28,7 @@ namespace notification { } fclose(flagFile); - std::string filename = "Horizon OC -" + std::to_string(std::time(nullptr)) + ".notify"; + std::string filename = "hoc-" + std::to_string(std::time(nullptr)) + ".notify"; std::string fullPath = "sdmc:/config/ultrahand/notifications/" + filename; FILE* file = fopen(fullPath.c_str(), "w");