diff --git a/ee/maintained-apps/inputs/homebrew/box-tools.json b/ee/maintained-apps/inputs/homebrew/box-tools.json new file mode 100644 index 0000000000..314c79ee66 --- /dev/null +++ b/ee/maintained-apps/inputs/homebrew/box-tools.json @@ -0,0 +1,10 @@ +{ + "name": "Box Tools", + "slug": "box-tools/darwin", + "unique_identifier": "com.Box.Box-Edit", + "token": "box-tools", + "installer_format": "dmg", + "default_categories": ["Productivity"], + "install_script_path": "ee/maintained-apps/inputs/homebrew/scripts/box-tools-install.sh", + "uninstall_script_path": "ee/maintained-apps/inputs/homebrew/scripts/box-tools-uninstall.sh" +} diff --git a/ee/maintained-apps/inputs/homebrew/scripts/box-tools-install.sh b/ee/maintained-apps/inputs/homebrew/scripts/box-tools-install.sh new file mode 100644 index 0000000000..4e63958aea --- /dev/null +++ b/ee/maintained-apps/inputs/homebrew/scripts/box-tools-install.sh @@ -0,0 +1,114 @@ +#!/bin/bash + +# Box Tools is a per-user application: Box only supports installing it into a +# user's home directory (~/Library/Application Support/Box/Box Edit). Its admin +# .pkg forbids the local system domain (enable_localSystem="false") and Box's +# large-scale deployment docs instruct running the installer as the console +# user. This script replicates the Homebrew cask install: it copies the app +# bundles out of the DMG's "Install Box Tools.app" into the console user's +# home, then registers them with LaunchServices so osquery's apps table (which +# enumerates LaunchServices) and the box.com web app can find them. + +quit_application() { + local bundle_id="$1" + local timeout_duration=10 + + # check if the application is running + local app_running + app_running=$(osascript -e "application id \"$bundle_id\" is running" 2>/dev/null) + if [[ "$app_running" != "true" ]]; then + return + fi + + local console_user + console_user=$(stat -f "%Su" /dev/console) + if [[ -z "$console_user" || "$console_user" == "root" || "$console_user" == "loginwindow" ]]; then + echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'." + return + fi + + echo "Quitting application '$bundle_id'..." + + # try to quit the application within the timeout period + local quit_success=false + SECONDS=0 + while (( SECONDS < timeout_duration )); do + if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then + if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then + echo "Application '$bundle_id' quit successfully." + quit_success=true + break + fi + fi + sleep 1 + done + + if [[ "$quit_success" = false ]]; then + echo "Application '$bundle_id' did not quit." + fi +} + +[[ -n "$INSTALLER_PATH" && -f "$INSTALLER_PATH" ]] || { echo "missing installer"; exit 1; } + +target_user=$(stat -f "%Su" /dev/console) +if [[ -z "$target_user" || "$target_user" == "root" || "$target_user" == "loginwindow" || "$target_user" == "_mbsetupuser" ]]; then + # No GUI session (e.g. install triggered while logged out): fall back to the + # last user that logged in. Box only supports Box Tools on single-user Macs, + # so this is unambiguous in the supported configuration. + target_user=$(defaults read /Library/Preferences/com.apple.loginwindow lastUserName 2>/dev/null) +fi +if [[ -z "$target_user" || "$target_user" == "root" ]] || ! id -u "$target_user" >/dev/null 2>&1; then + echo "Box Tools installs per-user; no logged-in (or last logged-in) user found." + exit 1 +fi +target_uid=$(id -u "$target_user") + +user_home=$(dscl . -read "/Users/$target_user" NFSHomeDirectory 2>/dev/null | sed 's/^NFSHomeDirectory: //') +[[ -n "$user_home" ]] || user_home="/Users/$target_user" +[[ -d "$user_home" ]] || { echo "home directory for $target_user not found"; exit 1; } + +quit_application "com.Box.Box-Edit" +quit_application "com.box.Box-Local-Com-Server" + +MOUNT_POINT="$(mktemp -d /tmp/box-tools-dmg.XXXXXX)" +hdiutil attach -nobrowse -readonly -mountpoint "$MOUNT_POINT" "$INSTALLER_PATH" >/dev/null || { echo "failed to mount dmg"; exit 1; } + +RESOURCES="$MOUNT_POINT/Install Box Tools.app/Contents/Resources" +BOX_DIR="$user_home/Library/Application Support/Box" +DEST="$BOX_DIR/Box Edit" +mkdir -p "$DEST" + +status=0 +for app in "Box Edit.app" "Box Device Trust.app" "Box Local Com Server.app" "Box Tools Custom Apps.app"; do + if [[ -d "$RESOURCES/$app" ]]; then + rm -rf "${DEST:?}/$app" + if ! ditto "$RESOURCES/$app" "$DEST/$app"; then + echo "failed to copy $app" + status=1 + fi + else + echo "$app not found in installer" + status=1 + fi +done + +# The parent Box directory is shared with other Box products (e.g. Box Drive) +# that run as the same user, so owning it (non-recursively) is safe. +chown -R "$target_user":staff "$DEST" +chown "$target_user":staff "$BOX_DIR" + +hdiutil detach "$MOUNT_POINT" >/dev/null 2>&1 || true +rmdir "$MOUNT_POINT" >/dev/null 2>&1 || true + +[[ $status -eq 0 ]] || exit "$status" + +# Register the copied bundles with LaunchServices in both the root context +# (osqueryd runs as root and its apps table enumerates LaunchServices) and the +# user's context (so box.com can launch Box Edit without a first manual launch). +LSREGISTER="/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister" +for app in "Box Edit.app" "Box Device Trust.app" "Box Local Com Server.app" "Box Tools Custom Apps.app"; do + "$LSREGISTER" -f "$DEST/$app" >/dev/null 2>&1 || true + /bin/launchctl asuser "$target_uid" sudo -u "$target_user" "$LSREGISTER" -f "$DEST/$app" >/dev/null 2>&1 || true +done + +echo "Box Tools installed for user $target_user" diff --git a/ee/maintained-apps/inputs/homebrew/scripts/box-tools-uninstall.sh b/ee/maintained-apps/inputs/homebrew/scripts/box-tools-uninstall.sh new file mode 100644 index 0000000000..3b5e5a1483 --- /dev/null +++ b/ee/maintained-apps/inputs/homebrew/scripts/box-tools-uninstall.sh @@ -0,0 +1,72 @@ +#!/bin/bash + +# Box Tools installs per-user (~/Library/Application Support/Box/Box Edit), so +# remove it from every local user's home. The parent Box directory is shared +# with other Box products (e.g. Box Drive), so only the Box Edit subdirectory +# is removed; the parent is removed only if it is left empty. + +quit_application() { + local bundle_id="$1" + local timeout_duration=10 + + # check if the application is running + local app_running + app_running=$(osascript -e "application id \"$bundle_id\" is running" 2>/dev/null) + if [[ "$app_running" != "true" ]]; then + return + fi + + local console_user + console_user=$(stat -f "%Su" /dev/console) + if [[ -z "$console_user" || "$console_user" == "root" || "$console_user" == "loginwindow" ]]; then + echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'." + return + fi + + echo "Quitting application '$bundle_id'..." + + # try to quit the application within the timeout period + local quit_success=false + SECONDS=0 + while (( SECONDS < timeout_duration )); do + if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then + if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then + echo "Application '$bundle_id' quit successfully." + quit_success=true + break + fi + fi + sleep 1 + done + + if [[ "$quit_success" = false ]]; then + echo "Application '$bundle_id' did not quit." + fi +} + +quit_application "com.Box.Box-Edit" +quit_application "com.box.Box-Local-Com-Server" + +# Box's background helpers may keep running after a quit attempt (they are +# faceless agents in the user's session); kill any leftovers so the app files +# can be removed cleanly. +pkill -f "Box Edit.app/Contents/MacOS" >/dev/null 2>&1 || true +pkill -f "Box Local Com Server.app/Contents/MacOS" >/dev/null 2>&1 || true +pkill -f "Box Device Trust.app/Contents/MacOS" >/dev/null 2>&1 || true +pkill -f "Box Tools Custom Apps.app/Contents/MacOS" >/dev/null 2>&1 || true + +removed=false +for udir in /Users/* /var/root; do + box_edit_dir="$udir/Library/Application Support/Box/Box Edit" + [[ -d "$box_edit_dir" ]] || continue + echo "removing $box_edit_dir" + rm -rf "$box_edit_dir" || true + rmdir "$udir/Library/Application Support/Box" >/dev/null 2>&1 || true + removed=true +done + +if [[ "$removed" = false ]]; then + echo "Box Tools was not found in any user's home directory." +fi + +echo "Box Tools uninstalled" diff --git a/ee/maintained-apps/inputs/winget/box-tools.json b/ee/maintained-apps/inputs/winget/box-tools.json new file mode 100644 index 0000000000..09953ef93c --- /dev/null +++ b/ee/maintained-apps/inputs/winget/box-tools.json @@ -0,0 +1,10 @@ +{ + "name": "Box Tools", + "slug": "box-tools/windows", + "package_identifier": "Box.BoxTools", + "unique_identifier": "Box Tools", + "installer_arch": "x64", + "installer_type": "msi", + "installer_scope": "machine", + "default_categories": ["Productivity"] +} diff --git a/ee/maintained-apps/outputs/apps.json b/ee/maintained-apps/outputs/apps.json index a5c6cf140a..97c56c45bc 100644 --- a/ee/maintained-apps/outputs/apps.json +++ b/ee/maintained-apps/outputs/apps.json @@ -1268,6 +1268,20 @@ "unique_identifier": "Box", "description": "Box Drive is the desktop client for Box Cloud, enabling seamless access to your files without taking up local storage." }, + { + "name": "Box Tools", + "slug": "box-tools/darwin", + "platform": "darwin", + "unique_identifier": "com.Box.Box-Edit", + "description": "Box Tools is a companion app for Box that lets users create and edit files stored in Box with their computer's default applications, directly from a web browser." + }, + { + "name": "Box Tools", + "slug": "box-tools/windows", + "platform": "windows", + "unique_identifier": "Box Tools", + "description": "Box Tools is a companion app for Box that lets users create and edit files stored in Box with their computer's default applications, directly from a web browser." + }, { "name": "Brave", "slug": "brave-browser/darwin", diff --git a/ee/maintained-apps/outputs/box-tools/darwin.json b/ee/maintained-apps/outputs/box-tools/darwin.json new file mode 100644 index 0000000000..9cff398b7a --- /dev/null +++ b/ee/maintained-apps/outputs/box-tools/darwin.json @@ -0,0 +1,22 @@ +{ + "versions": [ + { + "version": "4.32", + "queries": { + "exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.Box.Box-Edit';", + "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.Box.Box-Edit' AND version_compare(bundle_short_version, '4.32') < 0);" + }, + "installer_url": "https://e3.boxcdn.net/box-installers/boxedit/mac/currentrelease/BoxToolsInstaller.dmg", + "install_script_ref": "8edf7fac", + "uninstall_script_ref": "106fea69", + "sha256": "no_check", + "default_categories": [ + "Productivity" + ] + } + ], + "refs": { + "106fea69": "#!/bin/bash\n\n# Box Tools installs per-user (~/Library/Application Support/Box/Box Edit), so\n# remove it from every local user's home. The parent Box directory is shared\n# with other Box products (e.g. Box Drive), so only the Box Edit subdirectory\n# is removed; the parent is removed only if it is left empty.\n\nquit_application() {\n local bundle_id=\"$1\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\nquit_application \"com.Box.Box-Edit\"\nquit_application \"com.box.Box-Local-Com-Server\"\n\n# Box's background helpers may keep running after a quit attempt (they are\n# faceless agents in the user's session); kill any leftovers so the app files\n# can be removed cleanly.\npkill -f \"Box Edit.app/Contents/MacOS\" >/dev/null 2>&1 || true\npkill -f \"Box Local Com Server.app/Contents/MacOS\" >/dev/null 2>&1 || true\npkill -f \"Box Device Trust.app/Contents/MacOS\" >/dev/null 2>&1 || true\npkill -f \"Box Tools Custom Apps.app/Contents/MacOS\" >/dev/null 2>&1 || true\n\nremoved=false\nfor udir in /Users/* /var/root; do\n box_edit_dir=\"$udir/Library/Application Support/Box/Box Edit\"\n [[ -d \"$box_edit_dir\" ]] || continue\n echo \"removing $box_edit_dir\"\n rm -rf \"$box_edit_dir\" || true\n rmdir \"$udir/Library/Application Support/Box\" >/dev/null 2>&1 || true\n removed=true\ndone\n\nif [[ \"$removed\" = false ]]; then\n echo \"Box Tools was not found in any user's home directory.\"\nfi\n\necho \"Box Tools uninstalled\"\n", + "8edf7fac": "#!/bin/bash\n\n# Box Tools is a per-user application: Box only supports installing it into a\n# user's home directory (~/Library/Application Support/Box/Box Edit). Its admin\n# .pkg forbids the local system domain (enable_localSystem=\"false\") and Box's\n# large-scale deployment docs instruct running the installer as the console\n# user. This script replicates the Homebrew cask install: it copies the app\n# bundles out of the DMG's \"Install Box Tools.app\" into the console user's\n# home, then registers them with LaunchServices so osquery's apps table (which\n# enumerates LaunchServices) and the box.com web app can find them.\n\nquit_application() {\n local bundle_id=\"$1\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\n[[ -n \"$INSTALLER_PATH\" && -f \"$INSTALLER_PATH\" ]] || { echo \"missing installer\"; exit 1; }\n\ntarget_user=$(stat -f \"%Su\" /dev/console)\nif [[ -z \"$target_user\" || \"$target_user\" == \"root\" || \"$target_user\" == \"loginwindow\" || \"$target_user\" == \"_mbsetupuser\" ]]; then\n # No GUI session (e.g. install triggered while logged out): fall back to the\n # last user that logged in. Box only supports Box Tools on single-user Macs,\n # so this is unambiguous in the supported configuration.\n target_user=$(defaults read /Library/Preferences/com.apple.loginwindow lastUserName 2>/dev/null)\nfi\nif [[ -z \"$target_user\" || \"$target_user\" == \"root\" ]] || ! id -u \"$target_user\" >/dev/null 2>&1; then\n echo \"Box Tools installs per-user; no logged-in (or last logged-in) user found.\"\n exit 1\nfi\ntarget_uid=$(id -u \"$target_user\")\n\nuser_home=$(dscl . -read \"/Users/$target_user\" NFSHomeDirectory 2>/dev/null | sed 's/^NFSHomeDirectory: //')\n[[ -n \"$user_home\" ]] || user_home=\"/Users/$target_user\"\n[[ -d \"$user_home\" ]] || { echo \"home directory for $target_user not found\"; exit 1; }\n\nquit_application \"com.Box.Box-Edit\"\nquit_application \"com.box.Box-Local-Com-Server\"\n\nMOUNT_POINT=\"$(mktemp -d /tmp/box-tools-dmg.XXXXXX)\"\nhdiutil attach -nobrowse -readonly -mountpoint \"$MOUNT_POINT\" \"$INSTALLER_PATH\" >/dev/null || { echo \"failed to mount dmg\"; exit 1; }\n\nRESOURCES=\"$MOUNT_POINT/Install Box Tools.app/Contents/Resources\"\nBOX_DIR=\"$user_home/Library/Application Support/Box\"\nDEST=\"$BOX_DIR/Box Edit\"\nmkdir -p \"$DEST\"\n\nstatus=0\nfor app in \"Box Edit.app\" \"Box Device Trust.app\" \"Box Local Com Server.app\" \"Box Tools Custom Apps.app\"; do\n if [[ -d \"$RESOURCES/$app\" ]]; then\n rm -rf \"${DEST:?}/$app\"\n if ! ditto \"$RESOURCES/$app\" \"$DEST/$app\"; then\n echo \"failed to copy $app\"\n status=1\n fi\n else\n echo \"$app not found in installer\"\n status=1\n fi\ndone\n\n# The parent Box directory is shared with other Box products (e.g. Box Drive)\n# that run as the same user, so owning it (non-recursively) is safe.\nchown -R \"$target_user\":staff \"$DEST\"\nchown \"$target_user\":staff \"$BOX_DIR\"\n\nhdiutil detach \"$MOUNT_POINT\" >/dev/null 2>&1 || true\nrmdir \"$MOUNT_POINT\" >/dev/null 2>&1 || true\n\n[[ $status -eq 0 ]] || exit \"$status\"\n\n# Register the copied bundles with LaunchServices in both the root context\n# (osqueryd runs as root and its apps table enumerates LaunchServices) and the\n# user's context (so box.com can launch Box Edit without a first manual launch).\nLSREGISTER=\"/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister\"\nfor app in \"Box Edit.app\" \"Box Device Trust.app\" \"Box Local Com Server.app\" \"Box Tools Custom Apps.app\"; do\n \"$LSREGISTER\" -f \"$DEST/$app\" >/dev/null 2>&1 || true\n /bin/launchctl asuser \"$target_uid\" sudo -u \"$target_user\" \"$LSREGISTER\" -f \"$DEST/$app\" >/dev/null 2>&1 || true\ndone\n\necho \"Box Tools installed for user $target_user\"\n" + } +} diff --git a/ee/maintained-apps/outputs/box-tools/windows.json b/ee/maintained-apps/outputs/box-tools/windows.json new file mode 100644 index 0000000000..a6f4ef5688 --- /dev/null +++ b/ee/maintained-apps/outputs/box-tools/windows.json @@ -0,0 +1,23 @@ +{ + "versions": [ + { + "version": "4.32.0.1324", + "queries": { + "exists": "SELECT 1 FROM programs WHERE name = 'Box Tools' AND publisher = 'Box';", + "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'Box Tools' AND publisher = 'Box' AND version_compare(version, '4.32.0.1324') < 0);" + }, + "installer_url": "https://e3.boxcdn.net/box-installers/boxedit/win/currentrelease/BoxToolsInstaller-AdminInstall.msi", + "install_script_ref": "8959087b", + "uninstall_script_ref": "27915223", + "sha256": "9f59584911be7cf4c28b923154f02dd2b6d6fd8b67f14ddd7f708591c96c5066", + "default_categories": [ + "Productivity" + ], + "upgrade_code": "{BA743183-92C2-4F8F-B27E-B7822CAD2095}" + } + ], + "refs": { + "27915223": "# Fleet uninstalls app by finding all related product codes for the specified upgrade code\n$inst = New-Object -ComObject \"WindowsInstaller.Installer\"\n$timeoutSeconds = 300 # 5 minute timeout per product\n\n# MSI exit codes that indicate success. 3010 = ERROR_SUCCESS_REBOOT_REQUIRED,\n# 1641 = ERROR_SUCCESS_REBOOT_INITIATED. Treat these as success rather than failure.\n$successCodes = @(0, 3010, 1641)\n\nforeach ($product_code in $inst.RelatedProducts('{BA743183-92C2-4F8F-B27E-B7822CAD2095}')) {\n $process = Start-Process msiexec -ArgumentList @(\"/quiet\", \"/x\", $product_code, \"/norestart\") -PassThru\n\n # Wait for process with timeout\n $completed = $process.WaitForExit($timeoutSeconds * 1000)\n\n if (-not $completed) {\n Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue\n Exit 1603 # ERROR_UNINSTALL_FAILURE\n }\n\n # If the uninstall failed, bail\n if ($successCodes -notcontains $process.ExitCode) {\n Write-Output \"Uninstall for $($product_code) exited $($process.ExitCode)\"\n Exit $process.ExitCode\n }\n}\n\n# All uninstalls succeeded; exit success\nExit 0\n", + "8959087b": "$logFile = \"${env:TEMP}/fleet-install-software.log\"\n\ntry {\n\n$installProcess = Start-Process msiexec.exe `\n -ArgumentList \"/quiet /norestart /lv ${logFile} /i `\"${env:INSTALLER_PATH}`\"\" `\n -PassThru -Verb RunAs -Wait\n\nGet-Content $logFile -Tail 500\n\nExit $installProcess.ExitCode\n\n} catch {\n Write-Host \"Error: $_\"\n Exit 1\n}\n" + } +} diff --git a/frontend/pages/SoftwarePage/components/icons/BoxTools.tsx b/frontend/pages/SoftwarePage/components/icons/BoxTools.tsx new file mode 100644 index 0000000000..78a8c7396c --- /dev/null +++ b/frontend/pages/SoftwarePage/components/icons/BoxTools.tsx @@ -0,0 +1,14 @@ +import * as React from "react"; + +import type { SVGProps } from "react"; + +const BoxTools = (props: SVGProps) => ( + + + +); +export default BoxTools; diff --git a/frontend/pages/SoftwarePage/components/icons/index.ts b/frontend/pages/SoftwarePage/components/icons/index.ts index f28f6556f7..ed7a4b83cf 100644 --- a/frontend/pages/SoftwarePage/components/icons/index.ts +++ b/frontend/pages/SoftwarePage/components/icons/index.ts @@ -141,6 +141,7 @@ import Boom3D from "./Boom3D"; import Boop from "./Boop"; import BoostNote from "./BoostNote"; import Box from "./Box"; +import BoxTools from "./BoxTools"; import Brave from "./Brave"; import Breaktimer from "./Breaktimer"; import BricklinkStudio from "./BricklinkStudio"; @@ -1268,6 +1269,7 @@ export const SOFTWARE_NAME_TO_ICON_MAP = { boop: Boop, "boost note": BoostNote, box: Box, + "box tools": BoxTools, brave: Brave, breaktimer: Breaktimer, "bricklink studio": BricklinkStudio, diff --git a/website/assets/images/app-icon-box-tools-60x60@2x.png b/website/assets/images/app-icon-box-tools-60x60@2x.png new file mode 100644 index 0000000000..94f952d66e Binary files /dev/null and b/website/assets/images/app-icon-box-tools-60x60@2x.png differ