├── .gitignore ├── 3D Printing ├── FreeCAD.app │ ├── FreeCAD │ └── Resources │ │ ├── FreeCAD.png │ │ ├── executable │ │ └── packages ├── PrusaSlicer.app │ ├── PrusaSlicer │ └── Resources │ │ ├── PrusaSlicer.png │ │ ├── can-open │ │ ├── executable │ │ └── packages └── Ultimaker Cura.app │ ├── Resources │ ├── Ultimaker Cura.png │ ├── executable │ └── packages │ └── Ultimaker Cura ├── Audio ├── Audacious.app │ ├── Audacious │ └── Resources │ │ ├── Audacious.png │ │ ├── Audacious.svg │ │ ├── Info-gnustep.plist │ │ ├── can-open │ │ ├── executable │ │ └── packages ├── Audacity.app │ ├── Audacity │ └── Resources │ │ ├── Audacity.png │ │ ├── can-open │ │ ├── executable │ │ └── packages ├── LMMS.app │ ├── LMMS │ └── Resources │ │ ├── LMMS.png │ │ ├── executable │ │ └── packages └── MuseScore.app │ ├── MuseScore │ └── Resources │ ├── MuseScore.png │ ├── can-open │ ├── executable │ └── packages ├── Developer ├── GammaRay.app │ ├── GammaRay │ └── Resources │ │ ├── GammaRay.png │ │ ├── GammaRay.svg │ │ ├── Info-gnustep.plist │ │ ├── executable │ │ └── packages ├── LiteIDE.app │ ├── LiteIDE │ └── Resources │ │ ├── LiteIDE.png │ │ ├── executable │ │ └── packages ├── PyCharm CE.app │ ├── PyCharm CE │ └── Resources │ │ ├── PyCharm CE.png │ │ ├── executable │ │ └── packages ├── Qt Creator.app │ ├── Qt Creator │ └── Resources │ │ ├── Qt Creator.png │ │ ├── executable │ │ └── packages └── Zeal.app │ ├── Resources │ ├── Zeal.png │ ├── executable │ └── packages │ └── Zeal ├── Graphics ├── Blender.app │ ├── Blender │ └── Resources │ │ ├── Blender.png │ │ ├── executable │ │ └── packages ├── GIMP.app │ ├── GIMP │ └── Resources │ │ ├── GIMP.png │ │ ├── executable │ │ └── packages ├── Inkscape.app │ ├── Inkscape │ └── Resources │ │ ├── Inkscape.png │ │ ├── executable │ │ └── packages ├── Krita.app │ ├── Krita │ └── Resources │ │ ├── Krita.png │ │ ├── executable │ │ └── packages ├── Scribus.app │ ├── Resources │ │ ├── Scribus.png │ │ ├── executable │ │ └── packages │ └── Scribus └── Skanlite.app │ ├── Resources │ ├── Skanlite.png │ ├── executable │ └── packages │ └── Skanlite ├── Internet ├── Falkon.app │ ├── Falkon │ └── Resources │ │ ├── Falkon.png │ │ ├── can-open │ │ ├── executable │ │ └── packages ├── Firefox.app │ ├── Firefox │ └── Resources │ │ ├── Firefox.png │ │ ├── executable │ │ └── packages ├── Iridium.app │ ├── Iridium │ └── Resources │ │ ├── Info-gnustep.plist │ │ ├── Iridium.png │ │ ├── Iridium.svg │ │ ├── can-open │ │ ├── executable │ │ └── packages ├── Thunderbird.app │ ├── Resources │ │ ├── Thunderbird.png │ │ ├── executable │ │ └── packages │ └── Thunderbird ├── Transmission.app │ ├── Resources │ │ ├── Transmission.png │ │ ├── can-open │ │ ├── executable │ │ └── packages │ └── Transmission └── Trojitá.app │ ├── Resources │ ├── Trojitá.png │ ├── executable │ └── packages │ └── Trojitá ├── LICENSE ├── Office └── LibreOffice.app │ ├── LibreOffice │ └── Resources │ ├── LibreOffice.png │ ├── can-open │ ├── executable │ └── packages ├── Preferences ├── Boot Environments.app │ ├── Boot Environments │ └── Resources │ │ ├── Boot Environments.png │ │ └── boot-environments.py ├── Date and Time.app │ ├── Date and Time │ └── Resources │ │ ├── Date and Time.png │ │ └── spinner.gif ├── Fonts.app │ ├── Fonts │ └── Resources │ │ └── Fonts.png ├── Keyboard.app │ ├── Keyboard │ └── Resources │ │ ├── International.png │ │ ├── Keyboard.png │ │ └── save.py ├── Mouse.app │ ├── Mouse │ └── Resources │ │ ├── LICENSE │ │ └── Mouse.png ├── Sharing.app │ ├── Resources │ │ ├── Sharing.png │ │ └── sharing.py │ └── Sharing ├── Users.app │ ├── Resources │ │ ├── Users.png │ │ ├── autologin.py │ │ ├── slim.py │ │ └── tstranslator.py │ └── Users └── Wireless Networks.app │ ├── Resources │ ├── Wireless Networks.png │ ├── dialog.py │ └── wireless-networks │ └── Wireless Networks ├── README.md ├── Root └── Install Developer Tools.app │ ├── Install Developer Tools │ └── Resources │ ├── Background.png │ ├── Install Developer Tools.png │ ├── LICENSE │ ├── README.md │ ├── check.png │ ├── cross.png │ ├── developer-install.py │ ├── developer-install.sh │ ├── disks.py │ ├── i18n │ ├── cs.ts │ ├── da.ts │ ├── de.ts │ ├── el.ts │ ├── en.ts │ ├── eo.ts │ ├── es.ts │ ├── fr.ts │ ├── he.ts │ ├── hu.ts │ ├── it.ts │ ├── ja.ts │ ├── ka.ts │ ├── ko.ts │ ├── lt.ts │ ├── nb_NO.ts │ ├── nl.ts │ ├── pl.ts │ ├── pt.ts │ ├── pt_BR.ts │ ├── ru.ts │ ├── sl.ts │ ├── sv.ts │ ├── tr.ts │ ├── uk.ts │ ├── zh_Hans.ts │ └── zh_Hant.ts │ └── tstranslator.py ├── System ├── Battery.app │ ├── Battery │ └── Resources │ │ └── Battery.png ├── Format Disk.app │ ├── Format Disk │ └── Resources │ │ ├── Format Disk.png │ │ ├── disks.py │ │ ├── filesystems.py │ │ ├── formatdisk.py │ │ ├── formatdisk.ui │ │ ├── i18n │ │ ├── cs.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── he.ts │ │ ├── hu.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka.ts │ │ ├── ko.ts │ │ ├── lt.ts │ │ ├── nb_NO.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt.ts │ │ ├── pt_BR.ts │ │ ├── ru.ts │ │ ├── sl.ts │ │ ├── sv.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── zh_Hans.ts │ │ └── zh_Hant.ts │ │ ├── selectdisk.py │ │ ├── small_spinner.gif │ │ ├── spinner.gif │ │ └── tstranslator.py ├── Language.app │ ├── Language │ └── Resources │ │ └── Language.png ├── Mount Disk Image.app │ ├── Mount Disk Image │ └── Resources │ │ ├── Mount Disk Image.png │ │ ├── can-open │ │ ├── diskimage.png │ │ ├── mount_md_gui.py │ │ └── tstranslator.py ├── Network.app │ ├── Network │ └── Resources │ │ └── Network.png ├── Volume.app │ ├── Resources │ │ ├── Volume.png │ │ ├── audio-volume-high-symbolic.png │ │ └── audio-volume-muted-symbolic.png │ └── Volume └── Welcome.app │ ├── Resources │ ├── LICENSE │ ├── Welcome.png │ ├── content.cn.md │ ├── content.de.md │ ├── content.en.md │ ├── content.es.md │ ├── content.fr.md │ ├── content.jp.md │ ├── hello_variation.svg │ ├── main.qml │ └── welcome-wizard.py │ └── Welcome ├── Under Construction ├── Backup.app │ ├── Backup │ └── Resources │ │ ├── Backup.png │ │ ├── background.png │ │ ├── disks.py │ │ ├── selectdisk.py │ │ └── tstranslator.py ├── Bluetooth Wizard.app │ ├── Bluetooth Wizard │ └── Resources │ │ └── Bluetooth Wizard.png ├── Burn Optical Disc.app │ ├── Burn Optical Disc │ └── Resources │ │ ├── Burn Optical Disc.png │ │ ├── burn_optical_disc.py │ │ ├── mock_growisofs │ │ └── tstranslator.py ├── Disk First Aid.app │ ├── Disk First Aid │ └── Resources │ │ ├── Disk First Aid.png │ │ ├── LICENSE │ │ ├── background.png │ │ ├── check.png │ │ ├── cross.png │ │ ├── disk-first-aid.py │ │ └── disks.py ├── Disk Utility.app │ ├── Disk Utility │ └── Resources │ │ ├── Disk Utility.png │ │ ├── disks.py │ │ ├── form.ui │ │ ├── main.py │ │ ├── main.pyproject │ │ └── main.qml ├── Download Applications.app │ ├── Download Applications │ └── Resources │ │ ├── COPYRIGHT │ │ ├── Download Applications.png │ │ ├── background.png │ │ ├── check.png │ │ ├── cross.png │ │ ├── download-applications.py │ │ └── tstranslator.py ├── Energy Saving.app │ ├── Energy Saving │ └── Resources │ │ ├── Energy Saving.png │ │ ├── energy-saving.py │ │ └── set-10-monitor.sh ├── Grab.app │ ├── Grab │ └── Resources │ │ ├── Grab.png │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── grab-x11.py │ │ ├── grab.py │ │ ├── main_window.ui │ │ ├── main_window_ui.py │ │ └── widget_screenshot_preview.py ├── Install Debian Runtime.app │ ├── Install Debian Runtime │ └── Resources │ │ ├── COPYRIGHT │ │ ├── Install Debian Runtime.png │ │ ├── background.png │ │ ├── check.png │ │ ├── cross.png │ │ ├── debian │ │ ├── download-debian.py │ │ └── tstranslator.py ├── Network Utility.app │ ├── Network Utility │ └── Resources │ │ ├── LICENSE │ │ ├── Network Utility.png │ │ ├── __init__.py │ │ ├── network_utility.py │ │ ├── network_utility.ui │ │ └── network_utility_ui.py ├── Screencast.app │ ├── Resources │ │ └── Screencast.png │ └── Screencast ├── Simple Browser.app │ ├── GetCookies.py │ ├── README.md │ ├── Resources │ │ ├── Simple Browser.png │ │ └── images │ │ │ ├── arrow-000.png │ │ │ ├── arrow-180.png │ │ │ ├── arrow-circle-315.png │ │ │ ├── cross-circle.png │ │ │ ├── cross.png │ │ │ ├── disk--arrow.png │ │ │ ├── disk--pencil.png │ │ │ ├── home.png │ │ │ ├── lifebuoy.png │ │ │ ├── lock-nossl.png │ │ │ ├── lock-ssl.png │ │ │ ├── ma-icon-128.png │ │ │ ├── ma-icon-256.png │ │ │ ├── ma-icon-64.png │ │ │ ├── plus.png │ │ │ ├── printer.png │ │ │ ├── question.png │ │ │ ├── stop-hand.png │ │ │ ├── stop-hex.png │ │ │ └── ui-tab--plus.png │ ├── Simple Browser │ ├── requirements.txt │ └── screenshot-browser-tabbed.jpg ├── Start Disk.app │ ├── Resources │ │ └── Start Disk.png │ └── Start Disk └── Update.app │ ├── Resources │ ├── Update.png │ ├── i18n │ │ ├── cs.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── he.ts │ │ ├── hu.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka.ts │ │ ├── ko.ts │ │ ├── lt.ts │ │ ├── nb_NO.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt.ts │ │ ├── pt_BR.ts │ │ ├── ru.ts │ │ ├── sl.ts │ │ ├── sv.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── zh_Hans.ts │ │ └── zh_Hant.ts │ ├── tstranslator.py │ └── update.py │ └── Update ├── Utilities ├── Android File Transfer (MTP).app │ ├── Android File Transfer (MTP) │ └── Resources │ │ └── Android File Transfer (MTP).png ├── Calculator.app │ ├── Calculator │ └── Resources │ │ ├── Calculator.png │ │ ├── LICENSE │ │ └── calculator.py ├── Calendar.app │ ├── Calendar │ ├── Calendar.py │ └── Resources │ │ └── Calendar.png ├── Create Live Media.app │ ├── Create Live Media │ └── Resources │ │ ├── Create Live Media.png │ │ ├── Create Live Media.svg │ │ ├── FileSystemInfo.py │ │ ├── LICENSE │ │ ├── bgusb.png │ │ ├── check.png │ │ ├── create-livemedia.py │ │ ├── cross.png │ │ ├── disks.py │ │ ├── i18n │ │ ├── cs.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── he.ts │ │ ├── hu.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka.ts │ │ ├── ko.ts │ │ ├── lt.ts │ │ ├── nb_NO.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt.ts │ │ ├── pt_BR.ts │ │ ├── ru.ts │ │ ├── sl.ts │ │ ├── sv.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── zh_Hans.ts │ │ └── zh_Hant.ts │ │ ├── tstranslator.py │ │ └── usbsuccess.svg ├── Hardware Probe.app │ ├── Hardware Probe │ └── Resources │ │ ├── Hardware Probe.png │ │ ├── LICENSE │ │ ├── Stethoscope-icon.png │ │ ├── check.png │ │ ├── cross.png │ │ ├── hardware-probe.py │ │ ├── i18n │ │ ├── cs.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── he.ts │ │ ├── hu.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka.ts │ │ ├── ko.ts │ │ ├── lt.ts │ │ ├── nb_NO.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt.ts │ │ ├── pt_BR.ts │ │ ├── ru.ts │ │ ├── sl.ts │ │ ├── sv.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── zh_Hans.ts │ │ └── zh_Hant.ts │ │ ├── intro.txt │ │ ├── results.py │ │ └── tstranslator.py ├── Help.app │ ├── Help │ └── Resources │ │ └── Help.png ├── Install helloSystem.app │ ├── Install helloSystem │ └── Resources │ │ ├── Background.png │ │ ├── FREEBSD_Logo_Vert_Pos_RGB.png │ │ ├── Install FreeBSD.png │ │ ├── Install helloSystem.png │ │ ├── LICENSE │ │ ├── README.md │ │ ├── check.png │ │ ├── countries.json │ │ ├── cross.png │ │ ├── disks.py │ │ ├── i18n │ │ ├── cs.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── he.ts │ │ ├── hu.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka.ts │ │ ├── ko.ts │ │ ├── lt.ts │ │ ├── nb_NO.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt.ts │ │ ├── pt_BR.ts │ │ ├── ru.ts │ │ ├── sl.ts │ │ ├── sv.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── zh_Hans.ts │ │ └── zh_Hant.ts │ │ ├── install.py │ │ ├── languages.json │ │ └── tstranslator.py ├── Logs.app │ ├── Logs │ └── Resources │ │ ├── Logs.png │ │ └── logs.py ├── Processes.app │ ├── Processes │ └── Resources │ │ ├── Empty.png │ │ ├── Inspect.png │ │ ├── KillProcess.png │ │ ├── LICENSE │ │ ├── Processes.png │ │ ├── Processes.svg │ │ ├── SampleProcess.png │ │ ├── __init__.py │ │ ├── dialog_cpu_history.py │ │ ├── dialog_cpu_history.ui │ │ ├── dialog_cpu_history_ui.py │ │ ├── dialog_inspect_process.py │ │ ├── dialog_inspect_process.ui │ │ ├── dialog_inspect_process_ui.py │ │ ├── dialog_kill_process.py │ │ ├── dialog_kill_process.ui │ │ ├── dialog_kill_process_ui.py │ │ ├── dialog_sample_process.py │ │ ├── dialog_sample_process.ui │ │ ├── dialog_sample_process_ui.py │ │ ├── dialog_send_signal.py │ │ ├── dialog_send_signal.ui │ │ ├── dialog_send_signal_ui.py │ │ ├── main_window.ui │ │ ├── main_window_ui.py │ │ ├── processes.py │ │ ├── property_cpu_times_percent.py │ │ ├── property_virtual_memory.py │ │ ├── tab_cpu.py │ │ ├── tab_disk_activity.py │ │ ├── tab_disk_usage.py │ │ ├── tab_network.py │ │ ├── tab_system_memory.py │ │ ├── treeview_processes.py │ │ ├── utility.py │ │ ├── widget_chartpie.py │ │ ├── widget_color_pickup.py │ │ ├── widget_cpugraphbar.py │ │ ├── worker_icons_cache.py │ │ └── worker_psutil.py ├── Remote Assistance.app │ ├── Remote Assistance │ └── Resources │ │ ├── Remote Assistance.png │ │ ├── remote_assistance.py │ │ ├── remote_assistance_client.py │ │ └── speakable.py └── Zeroconf.app │ ├── Resources │ ├── Info-gnustep.plist │ └── Zeroconf.png │ └── Zeroconf ├── Video ├── Minitube.app │ ├── Minitube │ └── Resources │ │ ├── Info-gnustep.plist │ │ ├── Minitube.png │ │ ├── Minitube.svg │ │ ├── executable │ │ └── packages ├── OBS Studio.app │ ├── OBS Studio │ └── Resources │ │ ├── OBS Studio.png │ │ ├── executable │ │ └── packages └── Shotcut.app │ ├── Resources │ ├── Shotcut.png │ ├── can-open │ ├── executable │ └── packages │ └── Shotcut └── i18n ├── cs.ts ├── da.ts ├── de.ts ├── el.ts ├── en.ts ├── eo.ts ├── es.ts ├── fr.ts ├── he.ts ├── hu.ts ├── it.ts ├── ja.ts ├── ka.ts ├── ko.ts ├── lt.ts ├── nb_NO.ts ├── nl.ts ├── pl.ts ├── pt.ts ├── pt_BR.ts ├── ru.ts ├── sl.ts ├── sv.ts ├── tr.ts ├── uk.ts ├── zh_Hans.ts └── zh_Hant.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /3D Printing/FreeCAD.app/FreeCAD: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /3D Printing/FreeCAD.app/Resources/FreeCAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/FreeCAD.app/Resources/FreeCAD.png -------------------------------------------------------------------------------- /3D Printing/FreeCAD.app/Resources/executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/FreeCAD.app/Resources/executable -------------------------------------------------------------------------------- /3D Printing/FreeCAD.app/Resources/packages: -------------------------------------------------------------------------------- 1 | FreeCAD # Slicing application for 3D printers 2 | -------------------------------------------------------------------------------- /3D Printing/PrusaSlicer.app/PrusaSlicer: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /3D Printing/PrusaSlicer.app/Resources/PrusaSlicer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/PrusaSlicer.app/Resources/PrusaSlicer.png -------------------------------------------------------------------------------- /3D Printing/PrusaSlicer.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/PrusaSlicer.app/Resources/can-open -------------------------------------------------------------------------------- /3D Printing/PrusaSlicer.app/Resources/executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/PrusaSlicer.app/Resources/executable -------------------------------------------------------------------------------- /3D Printing/PrusaSlicer.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/PrusaSlicer.app/Resources/packages -------------------------------------------------------------------------------- /3D Printing/Ultimaker Cura.app/Resources/Ultimaker Cura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/Ultimaker Cura.app/Resources/Ultimaker Cura.png -------------------------------------------------------------------------------- /3D Printing/Ultimaker Cura.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/cura # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /3D Printing/Ultimaker Cura.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/3D Printing/Ultimaker Cura.app/Resources/packages -------------------------------------------------------------------------------- /3D Printing/Ultimaker Cura.app/Ultimaker Cura: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Audio/Audacious.app/Audacious: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Audio/Audacious.app/Resources/Audacious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacious.app/Resources/Audacious.png -------------------------------------------------------------------------------- /Audio/Audacious.app/Resources/Audacious.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacious.app/Resources/Audacious.svg -------------------------------------------------------------------------------- /Audio/Audacious.app/Resources/Info-gnustep.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacious.app/Resources/Info-gnustep.plist -------------------------------------------------------------------------------- /Audio/Audacious.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacious.app/Resources/can-open -------------------------------------------------------------------------------- /Audio/Audacious.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/audacious -------------------------------------------------------------------------------- /Audio/Audacious.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacious.app/Resources/packages -------------------------------------------------------------------------------- /Audio/Audacity.app/Audacity: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Audio/Audacity.app/Resources/Audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacity.app/Resources/Audacity.png -------------------------------------------------------------------------------- /Audio/Audacity.app/Resources/can-open: -------------------------------------------------------------------------------- 1 | application/x-audacity-project; 2 | -------------------------------------------------------------------------------- /Audio/Audacity.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/audacity # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Audio/Audacity.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/Audacity.app/Resources/packages -------------------------------------------------------------------------------- /Audio/LMMS.app/LMMS: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Audio/LMMS.app/Resources/LMMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/LMMS.app/Resources/LMMS.png -------------------------------------------------------------------------------- /Audio/LMMS.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/lmms # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Audio/LMMS.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/LMMS.app/Resources/packages -------------------------------------------------------------------------------- /Audio/MuseScore.app/MuseScore: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Audio/MuseScore.app/Resources/MuseScore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/MuseScore.app/Resources/MuseScore.png -------------------------------------------------------------------------------- /Audio/MuseScore.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Audio/MuseScore.app/Resources/can-open -------------------------------------------------------------------------------- /Audio/MuseScore.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/mscore -------------------------------------------------------------------------------- /Audio/MuseScore.app/Resources/packages: -------------------------------------------------------------------------------- 1 | musescore -------------------------------------------------------------------------------- /Developer/GammaRay.app/GammaRay: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Developer/GammaRay.app/Resources/GammaRay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/GammaRay.app/Resources/GammaRay.png -------------------------------------------------------------------------------- /Developer/GammaRay.app/Resources/GammaRay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/GammaRay.app/Resources/GammaRay.svg -------------------------------------------------------------------------------- /Developer/GammaRay.app/Resources/Info-gnustep.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/GammaRay.app/Resources/Info-gnustep.plist -------------------------------------------------------------------------------- /Developer/GammaRay.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/gammaray -------------------------------------------------------------------------------- /Developer/GammaRay.app/Resources/packages: -------------------------------------------------------------------------------- 1 | gammaray -------------------------------------------------------------------------------- /Developer/LiteIDE.app/LiteIDE: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Developer/LiteIDE.app/Resources/LiteIDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/LiteIDE.app/Resources/LiteIDE.png -------------------------------------------------------------------------------- /Developer/LiteIDE.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/liteide # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Developer/LiteIDE.app/Resources/packages: -------------------------------------------------------------------------------- 1 | liteide # IDE 2 | -------------------------------------------------------------------------------- /Developer/PyCharm CE.app/PyCharm CE: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Developer/PyCharm CE.app/Resources/PyCharm CE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/PyCharm CE.app/Resources/PyCharm CE.png -------------------------------------------------------------------------------- /Developer/PyCharm CE.app/Resources/executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/PyCharm CE.app/Resources/executable -------------------------------------------------------------------------------- /Developer/PyCharm CE.app/Resources/packages: -------------------------------------------------------------------------------- 1 | pycharm-ce # IDE 2 | -------------------------------------------------------------------------------- /Developer/Qt Creator.app/Qt Creator: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Developer/Qt Creator.app/Resources/Qt Creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/Qt Creator.app/Resources/Qt Creator.png -------------------------------------------------------------------------------- /Developer/Qt Creator.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/qtcreator # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Developer/Qt Creator.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/Qt Creator.app/Resources/packages -------------------------------------------------------------------------------- /Developer/Zeal.app/Resources/Zeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Developer/Zeal.app/Resources/Zeal.png -------------------------------------------------------------------------------- /Developer/Zeal.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/zeal # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Developer/Zeal.app/Resources/packages: -------------------------------------------------------------------------------- 1 | zeal # Docset browser 2 | -------------------------------------------------------------------------------- /Developer/Zeal.app/Zeal: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Graphics/Blender.app/Blender: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Graphics/Blender.app/Resources/Blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Blender.app/Resources/Blender.png -------------------------------------------------------------------------------- /Graphics/Blender.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/blender # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Graphics/Blender.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Blender.app/Resources/packages -------------------------------------------------------------------------------- /Graphics/GIMP.app/GIMP: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Graphics/GIMP.app/Resources/GIMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/GIMP.app/Resources/GIMP.png -------------------------------------------------------------------------------- /Graphics/GIMP.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/gimp # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Graphics/GIMP.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/GIMP.app/Resources/packages -------------------------------------------------------------------------------- /Graphics/Inkscape.app/Inkscape: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Graphics/Inkscape.app/Resources/Inkscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Inkscape.app/Resources/Inkscape.png -------------------------------------------------------------------------------- /Graphics/Inkscape.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/inkscape # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Graphics/Inkscape.app/Resources/packages: -------------------------------------------------------------------------------- 1 | inkscape # Full featured open source SVG editor 2 | -------------------------------------------------------------------------------- /Graphics/Krita.app/Krita: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Graphics/Krita.app/Resources/Krita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Krita.app/Resources/Krita.png -------------------------------------------------------------------------------- /Graphics/Krita.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/krita # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Graphics/Krita.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Krita.app/Resources/packages -------------------------------------------------------------------------------- /Graphics/Scribus.app/Resources/Scribus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Scribus.app/Resources/Scribus.png -------------------------------------------------------------------------------- /Graphics/Scribus.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/scribus # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Graphics/Scribus.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Scribus.app/Resources/packages -------------------------------------------------------------------------------- /Graphics/Scribus.app/Scribus: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Graphics/Skanlite.app/Resources/Skanlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Skanlite.app/Resources/Skanlite.png -------------------------------------------------------------------------------- /Graphics/Skanlite.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/skanlite # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Graphics/Skanlite.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Graphics/Skanlite.app/Resources/packages -------------------------------------------------------------------------------- /Graphics/Skanlite.app/Skanlite: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Internet/Falkon.app/Falkon: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Internet/Falkon.app/Resources/Falkon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Falkon.app/Resources/Falkon.png -------------------------------------------------------------------------------- /Internet/Falkon.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Falkon.app/Resources/can-open -------------------------------------------------------------------------------- /Internet/Falkon.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/falkon # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Internet/Falkon.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Falkon.app/Resources/packages -------------------------------------------------------------------------------- /Internet/Firefox.app/Firefox: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Internet/Firefox.app/Resources/Firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Firefox.app/Resources/Firefox.png -------------------------------------------------------------------------------- /Internet/Firefox.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/firefox -------------------------------------------------------------------------------- /Internet/Firefox.app/Resources/packages: -------------------------------------------------------------------------------- 1 | firefox -------------------------------------------------------------------------------- /Internet/Iridium.app/Iridium: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Internet/Iridium.app/Resources/Info-gnustep.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Iridium.app/Resources/Info-gnustep.plist -------------------------------------------------------------------------------- /Internet/Iridium.app/Resources/Iridium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Iridium.app/Resources/Iridium.png -------------------------------------------------------------------------------- /Internet/Iridium.app/Resources/Iridium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Iridium.app/Resources/Iridium.svg -------------------------------------------------------------------------------- /Internet/Iridium.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Iridium.app/Resources/can-open -------------------------------------------------------------------------------- /Internet/Iridium.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/iridium -------------------------------------------------------------------------------- /Internet/Iridium.app/Resources/packages: -------------------------------------------------------------------------------- 1 | iridium-browser -------------------------------------------------------------------------------- /Internet/Thunderbird.app/Resources/Thunderbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Thunderbird.app/Resources/Thunderbird.png -------------------------------------------------------------------------------- /Internet/Thunderbird.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/thunderbird -------------------------------------------------------------------------------- /Internet/Thunderbird.app/Resources/packages: -------------------------------------------------------------------------------- 1 | thunderbird -------------------------------------------------------------------------------- /Internet/Thunderbird.app/Thunderbird: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Internet/Transmission.app/Resources/Transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Transmission.app/Resources/Transmission.png -------------------------------------------------------------------------------- /Internet/Transmission.app/Resources/can-open: -------------------------------------------------------------------------------- 1 | application/x-bittorrent;x-scheme-handler/magnet; -------------------------------------------------------------------------------- /Internet/Transmission.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/transmission-qt -------------------------------------------------------------------------------- /Internet/Transmission.app/Resources/packages: -------------------------------------------------------------------------------- 1 | transmission-qt -------------------------------------------------------------------------------- /Internet/Transmission.app/Transmission: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Internet/Trojitá.app/Resources/Trojitá.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Internet/Trojitá.app/Resources/Trojitá.png -------------------------------------------------------------------------------- /Internet/Trojitá.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/trojita -------------------------------------------------------------------------------- /Internet/Trojitá.app/Resources/packages: -------------------------------------------------------------------------------- 1 | trojita -------------------------------------------------------------------------------- /Internet/Trojitá.app/Trojitá: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/LICENSE -------------------------------------------------------------------------------- /Office/LibreOffice.app/LibreOffice: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Office/LibreOffice.app/Resources/LibreOffice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Office/LibreOffice.app/Resources/LibreOffice.png -------------------------------------------------------------------------------- /Office/LibreOffice.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Office/LibreOffice.app/Resources/can-open -------------------------------------------------------------------------------- /Office/LibreOffice.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/soffice # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Office/LibreOffice.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Office/LibreOffice.app/Resources/packages -------------------------------------------------------------------------------- /Preferences/Boot Environments.app/Boot Environments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Boot Environments.app/Boot Environments -------------------------------------------------------------------------------- /Preferences/Boot Environments.app/Resources/Boot Environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Boot Environments.app/Resources/Boot Environments.png -------------------------------------------------------------------------------- /Preferences/Boot Environments.app/Resources/boot-environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Boot Environments.app/Resources/boot-environments.py -------------------------------------------------------------------------------- /Preferences/Date and Time.app/Date and Time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Date and Time.app/Date and Time -------------------------------------------------------------------------------- /Preferences/Date and Time.app/Resources/Date and Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Date and Time.app/Resources/Date and Time.png -------------------------------------------------------------------------------- /Preferences/Date and Time.app/Resources/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Date and Time.app/Resources/spinner.gif -------------------------------------------------------------------------------- /Preferences/Fonts.app/Fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Fonts.app/Fonts -------------------------------------------------------------------------------- /Preferences/Fonts.app/Resources/Fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Fonts.app/Resources/Fonts.png -------------------------------------------------------------------------------- /Preferences/Keyboard.app/Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Keyboard.app/Keyboard -------------------------------------------------------------------------------- /Preferences/Keyboard.app/Resources/International.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Keyboard.app/Resources/International.png -------------------------------------------------------------------------------- /Preferences/Keyboard.app/Resources/Keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Keyboard.app/Resources/Keyboard.png -------------------------------------------------------------------------------- /Preferences/Keyboard.app/Resources/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Keyboard.app/Resources/save.py -------------------------------------------------------------------------------- /Preferences/Mouse.app/Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Mouse.app/Mouse -------------------------------------------------------------------------------- /Preferences/Mouse.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Mouse.app/Resources/LICENSE -------------------------------------------------------------------------------- /Preferences/Mouse.app/Resources/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Mouse.app/Resources/Mouse.png -------------------------------------------------------------------------------- /Preferences/Sharing.app/Resources/Sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Sharing.app/Resources/Sharing.png -------------------------------------------------------------------------------- /Preferences/Sharing.app/Resources/sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Sharing.app/Resources/sharing.py -------------------------------------------------------------------------------- /Preferences/Sharing.app/Sharing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Sharing.app/Sharing -------------------------------------------------------------------------------- /Preferences/Users.app/Resources/Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Users.app/Resources/Users.png -------------------------------------------------------------------------------- /Preferences/Users.app/Resources/autologin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Users.app/Resources/autologin.py -------------------------------------------------------------------------------- /Preferences/Users.app/Resources/slim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Users.app/Resources/slim.py -------------------------------------------------------------------------------- /Preferences/Users.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Users.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Preferences/Users.app/Users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Users.app/Users -------------------------------------------------------------------------------- /Preferences/Wireless Networks.app/Resources/Wireless Networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Wireless Networks.app/Resources/Wireless Networks.png -------------------------------------------------------------------------------- /Preferences/Wireless Networks.app/Resources/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Wireless Networks.app/Resources/dialog.py -------------------------------------------------------------------------------- /Preferences/Wireless Networks.app/Resources/wireless-networks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Wireless Networks.app/Resources/wireless-networks -------------------------------------------------------------------------------- /Preferences/Wireless Networks.app/Wireless Networks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Preferences/Wireless Networks.app/Wireless Networks -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/README.md -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Install Developer Tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Install Developer Tools -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/Background.png -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/Install Developer Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/Install Developer Tools.png -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/LICENSE -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/README.md -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/check.png -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/cross.png -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/developer-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/developer-install.py -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/developer-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/developer-install.sh -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/disks.py -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/cs.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/da.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/de.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/el.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/en.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/eo.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/es.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/fr.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/he.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/hu.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/it.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/ja.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/ka.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/ko.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/lt.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/nb_NO.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/nl.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/pl.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/pt.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/pt_BR.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/ru.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/sl.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/sv.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/tr.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/uk.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/i18n/zh_Hant.ts -------------------------------------------------------------------------------- /Root/Install Developer Tools.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Root/Install Developer Tools.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /System/Battery.app/Battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Battery.app/Battery -------------------------------------------------------------------------------- /System/Battery.app/Resources/Battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Battery.app/Resources/Battery.png -------------------------------------------------------------------------------- /System/Format Disk.app/Format Disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Format Disk -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/Format Disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/Format Disk.png -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/disks.py -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/filesystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/filesystems.py -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/formatdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/formatdisk.py -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/formatdisk.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/formatdisk.ui -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/cs.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/da.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/de.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/el.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/en.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/eo.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/es.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/fr.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/he.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/hu.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/it.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/ja.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/ka.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/ko.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/lt.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/nb_NO.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/nl.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/pl.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/pt.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/pt_BR.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/ru.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/sl.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/sv.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/tr.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/uk.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/i18n/zh_Hant.ts -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/selectdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/selectdisk.py -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/small_spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/small_spinner.gif -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/spinner.gif -------------------------------------------------------------------------------- /System/Format Disk.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Format Disk.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /System/Language.app/Language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Language.app/Language -------------------------------------------------------------------------------- /System/Language.app/Resources/Language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Language.app/Resources/Language.png -------------------------------------------------------------------------------- /System/Mount Disk Image.app/Mount Disk Image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Mount Disk Image.app/Mount Disk Image -------------------------------------------------------------------------------- /System/Mount Disk Image.app/Resources/Mount Disk Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Mount Disk Image.app/Resources/Mount Disk Image.png -------------------------------------------------------------------------------- /System/Mount Disk Image.app/Resources/can-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Mount Disk Image.app/Resources/can-open -------------------------------------------------------------------------------- /System/Mount Disk Image.app/Resources/diskimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Mount Disk Image.app/Resources/diskimage.png -------------------------------------------------------------------------------- /System/Mount Disk Image.app/Resources/mount_md_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Mount Disk Image.app/Resources/mount_md_gui.py -------------------------------------------------------------------------------- /System/Mount Disk Image.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Mount Disk Image.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /System/Network.app/Network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Network.app/Network -------------------------------------------------------------------------------- /System/Network.app/Resources/Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Network.app/Resources/Network.png -------------------------------------------------------------------------------- /System/Volume.app/Resources/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Volume.app/Resources/Volume.png -------------------------------------------------------------------------------- /System/Volume.app/Resources/audio-volume-high-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Volume.app/Resources/audio-volume-high-symbolic.png -------------------------------------------------------------------------------- /System/Volume.app/Resources/audio-volume-muted-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Volume.app/Resources/audio-volume-muted-symbolic.png -------------------------------------------------------------------------------- /System/Volume.app/Volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Volume.app/Volume -------------------------------------------------------------------------------- /System/Welcome.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/LICENSE -------------------------------------------------------------------------------- /System/Welcome.app/Resources/Welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/Welcome.png -------------------------------------------------------------------------------- /System/Welcome.app/Resources/content.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/content.cn.md -------------------------------------------------------------------------------- /System/Welcome.app/Resources/content.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/content.de.md -------------------------------------------------------------------------------- /System/Welcome.app/Resources/content.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/content.en.md -------------------------------------------------------------------------------- /System/Welcome.app/Resources/content.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/content.es.md -------------------------------------------------------------------------------- /System/Welcome.app/Resources/content.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/content.fr.md -------------------------------------------------------------------------------- /System/Welcome.app/Resources/content.jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/content.jp.md -------------------------------------------------------------------------------- /System/Welcome.app/Resources/hello_variation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/hello_variation.svg -------------------------------------------------------------------------------- /System/Welcome.app/Resources/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/main.qml -------------------------------------------------------------------------------- /System/Welcome.app/Resources/welcome-wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Resources/welcome-wizard.py -------------------------------------------------------------------------------- /System/Welcome.app/Welcome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/System/Welcome.app/Welcome -------------------------------------------------------------------------------- /Under Construction/Backup.app/Backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Backup.app/Backup -------------------------------------------------------------------------------- /Under Construction/Backup.app/Resources/Backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Backup.app/Resources/Backup.png -------------------------------------------------------------------------------- /Under Construction/Backup.app/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Backup.app/Resources/background.png -------------------------------------------------------------------------------- /Under Construction/Backup.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Backup.app/Resources/disks.py -------------------------------------------------------------------------------- /Under Construction/Backup.app/Resources/selectdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Backup.app/Resources/selectdisk.py -------------------------------------------------------------------------------- /Under Construction/Backup.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Backup.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Under Construction/Bluetooth Wizard.app/Bluetooth Wizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Bluetooth Wizard.app/Bluetooth Wizard -------------------------------------------------------------------------------- /Under Construction/Bluetooth Wizard.app/Resources/Bluetooth Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Bluetooth Wizard.app/Resources/Bluetooth Wizard.png -------------------------------------------------------------------------------- /Under Construction/Burn Optical Disc.app/Burn Optical Disc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Burn Optical Disc.app/Burn Optical Disc -------------------------------------------------------------------------------- /Under Construction/Burn Optical Disc.app/Resources/Burn Optical Disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Burn Optical Disc.app/Resources/Burn Optical Disc.png -------------------------------------------------------------------------------- /Under Construction/Burn Optical Disc.app/Resources/burn_optical_disc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Burn Optical Disc.app/Resources/burn_optical_disc.py -------------------------------------------------------------------------------- /Under Construction/Burn Optical Disc.app/Resources/mock_growisofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Burn Optical Disc.app/Resources/mock_growisofs -------------------------------------------------------------------------------- /Under Construction/Burn Optical Disc.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Burn Optical Disc.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Disk First Aid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Disk First Aid -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/Disk First Aid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/Disk First Aid.png -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/LICENSE -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/background.png -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/check.png -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/cross.png -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/disk-first-aid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/disk-first-aid.py -------------------------------------------------------------------------------- /Under Construction/Disk First Aid.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk First Aid.app/Resources/disks.py -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Disk Utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Disk Utility -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Resources/Disk Utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Resources/Disk Utility.png -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Resources/disks.py -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Resources/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Resources/form.ui -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Resources/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Resources/main.py -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Resources/main.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Resources/main.pyproject -------------------------------------------------------------------------------- /Under Construction/Disk Utility.app/Resources/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Disk Utility.app/Resources/main.qml -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Download Applications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Download Applications -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Icon from https://www.freeiconspng.com/downloadimg/4389 2 | -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/Download Applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Resources/Download Applications.png -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Resources/background.png -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Resources/check.png -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Resources/cross.png -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/download-applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Resources/download-applications.py -------------------------------------------------------------------------------- /Under Construction/Download Applications.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Download Applications.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Under Construction/Energy Saving.app/Energy Saving: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Energy Saving.app/Energy Saving -------------------------------------------------------------------------------- /Under Construction/Energy Saving.app/Resources/Energy Saving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Energy Saving.app/Resources/Energy Saving.png -------------------------------------------------------------------------------- /Under Construction/Energy Saving.app/Resources/energy-saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Energy Saving.app/Resources/energy-saving.py -------------------------------------------------------------------------------- /Under Construction/Energy Saving.app/Resources/set-10-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Energy Saving.app/Resources/set-10-monitor.sh -------------------------------------------------------------------------------- /Under Construction/Grab.app/Grab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Grab -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/Grab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/Grab.png -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/LICENSE -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/__init__.py -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/grab-x11.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/grab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/grab.py -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/main_window.ui -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/main_window_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/main_window_ui.py -------------------------------------------------------------------------------- /Under Construction/Grab.app/Resources/widget_screenshot_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Grab.app/Resources/widget_screenshot_preview.py -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Install Debian Runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Install Debian Runtime -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/COPYRIGHT -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/Install Debian Runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/Install Debian Runtime.png -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/background.png -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/check.png -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/cross.png -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/debian -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/download-debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/download-debian.py -------------------------------------------------------------------------------- /Under Construction/Install Debian Runtime.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Install Debian Runtime.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Network Utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Network Utility.app/Network Utility -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Network Utility.app/Resources/LICENSE -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Resources/Network Utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Network Utility.app/Resources/Network Utility.png -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Resources/network_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Network Utility.app/Resources/network_utility.py -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Resources/network_utility.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Network Utility.app/Resources/network_utility.ui -------------------------------------------------------------------------------- /Under Construction/Network Utility.app/Resources/network_utility_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Network Utility.app/Resources/network_utility_ui.py -------------------------------------------------------------------------------- /Under Construction/Screencast.app/Resources/Screencast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Screencast.app/Resources/Screencast.png -------------------------------------------------------------------------------- /Under Construction/Screencast.app/Screencast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Screencast.app/Screencast -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/GetCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/GetCookies.py -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/README.md -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/Simple Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/Simple Browser.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/arrow-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/arrow-000.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/arrow-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/arrow-180.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/arrow-circle-315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/arrow-circle-315.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/cross-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/cross-circle.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/cross.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/disk--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/disk--arrow.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/disk--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/disk--pencil.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/home.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/lifebuoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/lifebuoy.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/lock-nossl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/lock-nossl.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/lock-ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/lock-ssl.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/ma-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/ma-icon-128.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/ma-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/ma-icon-256.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/ma-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/ma-icon-64.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/plus.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/printer.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/question.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/stop-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/stop-hand.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/stop-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/stop-hex.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Resources/images/ui-tab--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Resources/images/ui-tab--plus.png -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/Simple Browser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/Simple Browser -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt5>=5.6 2 | sip 3 | -------------------------------------------------------------------------------- /Under Construction/Simple Browser.app/screenshot-browser-tabbed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Simple Browser.app/screenshot-browser-tabbed.jpg -------------------------------------------------------------------------------- /Under Construction/Start Disk.app/Resources/Start Disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Start Disk.app/Resources/Start Disk.png -------------------------------------------------------------------------------- /Under Construction/Start Disk.app/Start Disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Start Disk.app/Start Disk -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/Update.png -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/cs.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/da.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/de.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/el.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/en.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/eo.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/es.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/fr.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/he.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/hu.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/it.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/ja.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/ka.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/ko.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/lt.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/nb_NO.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/nl.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/pl.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/pt.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/pt_BR.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/ru.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/sl.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/sv.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/tr.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/uk.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/i18n/zh_Hant.ts -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Under Construction/Update.app/Resources/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Resources/update.py -------------------------------------------------------------------------------- /Under Construction/Update.app/Update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Under Construction/Update.app/Update -------------------------------------------------------------------------------- /Utilities/Android File Transfer (MTP).app/Android File Transfer (MTP): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Android File Transfer (MTP).app/Android File Transfer (MTP) -------------------------------------------------------------------------------- /Utilities/Android File Transfer (MTP).app/Resources/Android File Transfer (MTP).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Android File Transfer (MTP).app/Resources/Android File Transfer (MTP).png -------------------------------------------------------------------------------- /Utilities/Calculator.app/Calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Calculator.app/Calculator -------------------------------------------------------------------------------- /Utilities/Calculator.app/Resources/Calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Calculator.app/Resources/Calculator.png -------------------------------------------------------------------------------- /Utilities/Calculator.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Calculator.app/Resources/LICENSE -------------------------------------------------------------------------------- /Utilities/Calculator.app/Resources/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Calculator.app/Resources/calculator.py -------------------------------------------------------------------------------- /Utilities/Calendar.app/Calendar: -------------------------------------------------------------------------------- 1 | /Applications/Utilities/Calendar.app/Calendar.py -------------------------------------------------------------------------------- /Utilities/Calendar.app/Calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Calendar.app/Calendar.py -------------------------------------------------------------------------------- /Utilities/Calendar.app/Resources/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Calendar.app/Resources/Calendar.png -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Create Live Media: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Create Live Media -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/Create Live Media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/Create Live Media.png -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/Create Live Media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/Create Live Media.svg -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/FileSystemInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/FileSystemInfo.py -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/LICENSE -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/bgusb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/bgusb.png -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/check.png -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/create-livemedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/create-livemedia.py -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/cross.png -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/disks.py -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/cs.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/da.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/de.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/el.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/en.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/eo.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/es.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/fr.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/he.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/hu.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/it.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/ja.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/ka.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/ko.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/lt.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/nb_NO.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/nl.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/pl.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/pt.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/pt_BR.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/ru.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/sl.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/sv.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/tr.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/uk.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/i18n/zh_Hant.ts -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Utilities/Create Live Media.app/Resources/usbsuccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Create Live Media.app/Resources/usbsuccess.svg -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Hardware Probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Hardware Probe -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/Hardware Probe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/Hardware Probe.png -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/LICENSE -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/Stethoscope-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/Stethoscope-icon.png -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/check.png -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/cross.png -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/hardware-probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/hardware-probe.py -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/cs.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/da.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/de.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/el.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/en.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/eo.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/es.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/fr.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/he.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/hu.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/it.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/ja.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/ka.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/ko.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/lt.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/nb_NO.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/nl.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/pl.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/pt.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/pt_BR.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/ru.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/sl.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/sv.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/tr.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/uk.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/i18n/zh_Hant.ts -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/intro.txt -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/results.py -------------------------------------------------------------------------------- /Utilities/Hardware Probe.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Hardware Probe.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Utilities/Help.app/Help: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | launch Falkon https://hellosystem.github.io/docs/ "$@" 3 | -------------------------------------------------------------------------------- /Utilities/Help.app/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Help.app/Resources/Help.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Install helloSystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Install helloSystem -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/Background.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/FREEBSD_Logo_Vert_Pos_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/FREEBSD_Logo_Vert_Pos_RGB.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/Install FreeBSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/Install FreeBSD.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/Install helloSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/Install helloSystem.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/LICENSE -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/README.md -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/check.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/countries.json -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/cross.png -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/disks.py -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/cs.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/da.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/de.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/el.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/en.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/eo.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/es.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/fr.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/he.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/hu.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/it.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/ja.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/ka.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/ko.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/lt.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/nb_NO.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/nl.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/pl.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/pt.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/pt_BR.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/ru.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/sl.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/sv.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/tr.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/uk.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/i18n/zh_Hant.ts -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/install.py -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/languages.json -------------------------------------------------------------------------------- /Utilities/Install helloSystem.app/Resources/tstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Install helloSystem.app/Resources/tstranslator.py -------------------------------------------------------------------------------- /Utilities/Logs.app/Logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Logs.app/Logs -------------------------------------------------------------------------------- /Utilities/Logs.app/Resources/Logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Logs.app/Resources/Logs.png -------------------------------------------------------------------------------- /Utilities/Logs.app/Resources/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Logs.app/Resources/logs.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Processes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Processes -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/Empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/Empty.png -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/Inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/Inspect.png -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/KillProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/KillProcess.png -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/LICENSE -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/Processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/Processes.png -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/Processes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/Processes.svg -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/SampleProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/SampleProcess.png -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_cpu_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_cpu_history.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_cpu_history.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_cpu_history.ui -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_cpu_history_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_cpu_history_ui.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_inspect_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_inspect_process.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_inspect_process.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_inspect_process.ui -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_inspect_process_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_inspect_process_ui.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_kill_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_kill_process.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_kill_process.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_kill_process.ui -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_kill_process_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_kill_process_ui.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_sample_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_sample_process.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_sample_process.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_sample_process.ui -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_sample_process_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_sample_process_ui.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_send_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_send_signal.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_send_signal.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_send_signal.ui -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/dialog_send_signal_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/dialog_send_signal_ui.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/main_window.ui -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/main_window_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/main_window_ui.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/processes.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/property_cpu_times_percent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/property_cpu_times_percent.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/property_virtual_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/property_virtual_memory.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/tab_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/tab_cpu.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/tab_disk_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/tab_disk_activity.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/tab_disk_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/tab_disk_usage.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/tab_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/tab_network.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/tab_system_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/tab_system_memory.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/treeview_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/treeview_processes.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/utility.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/widget_chartpie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/widget_chartpie.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/widget_color_pickup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/widget_color_pickup.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/widget_cpugraphbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/widget_cpugraphbar.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/worker_icons_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/worker_icons_cache.py -------------------------------------------------------------------------------- /Utilities/Processes.app/Resources/worker_psutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Processes.app/Resources/worker_psutil.py -------------------------------------------------------------------------------- /Utilities/Remote Assistance.app/Remote Assistance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Remote Assistance.app/Remote Assistance -------------------------------------------------------------------------------- /Utilities/Remote Assistance.app/Resources/Remote Assistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Remote Assistance.app/Resources/Remote Assistance.png -------------------------------------------------------------------------------- /Utilities/Remote Assistance.app/Resources/remote_assistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Remote Assistance.app/Resources/remote_assistance.py -------------------------------------------------------------------------------- /Utilities/Remote Assistance.app/Resources/remote_assistance_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Remote Assistance.app/Resources/remote_assistance_client.py -------------------------------------------------------------------------------- /Utilities/Remote Assistance.app/Resources/speakable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Remote Assistance.app/Resources/speakable.py -------------------------------------------------------------------------------- /Utilities/Zeroconf.app/Resources/Info-gnustep.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Zeroconf.app/Resources/Info-gnustep.plist -------------------------------------------------------------------------------- /Utilities/Zeroconf.app/Resources/Zeroconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Zeroconf.app/Resources/Zeroconf.png -------------------------------------------------------------------------------- /Utilities/Zeroconf.app/Zeroconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Utilities/Zeroconf.app/Zeroconf -------------------------------------------------------------------------------- /Video/Minitube.app/Minitube: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Video/Minitube.app/Resources/Info-gnustep.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Video/Minitube.app/Resources/Info-gnustep.plist -------------------------------------------------------------------------------- /Video/Minitube.app/Resources/Minitube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Video/Minitube.app/Resources/Minitube.png -------------------------------------------------------------------------------- /Video/Minitube.app/Resources/Minitube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Video/Minitube.app/Resources/Minitube.svg -------------------------------------------------------------------------------- /Video/Minitube.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/minitube -------------------------------------------------------------------------------- /Video/Minitube.app/Resources/packages: -------------------------------------------------------------------------------- 1 | minitube -------------------------------------------------------------------------------- /Video/OBS Studio.app/OBS Studio: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /Video/OBS Studio.app/Resources/OBS Studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Video/OBS Studio.app/Resources/OBS Studio.png -------------------------------------------------------------------------------- /Video/OBS Studio.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/obs # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Video/OBS Studio.app/Resources/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Video/OBS Studio.app/Resources/packages -------------------------------------------------------------------------------- /Video/Shotcut.app/Resources/Shotcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/Video/Shotcut.app/Resources/Shotcut.png -------------------------------------------------------------------------------- /Video/Shotcut.app/Resources/can-open: -------------------------------------------------------------------------------- 1 | application/vnd.mlt+xml; 2 | -------------------------------------------------------------------------------- /Video/Shotcut.app/Resources/executable: -------------------------------------------------------------------------------- 1 | /usr/local/bin/shotcut # Absolute path to the executable 2 | -------------------------------------------------------------------------------- /Video/Shotcut.app/Resources/packages: -------------------------------------------------------------------------------- 1 | shotcut # Free, open source, cross-platform video editor 2 | -------------------------------------------------------------------------------- /Video/Shotcut.app/Shotcut: -------------------------------------------------------------------------------- 1 | /usr/local/libexec/app-placeholder -------------------------------------------------------------------------------- /i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/cs.ts -------------------------------------------------------------------------------- /i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/da.ts -------------------------------------------------------------------------------- /i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/de.ts -------------------------------------------------------------------------------- /i18n/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/el.ts -------------------------------------------------------------------------------- /i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/en.ts -------------------------------------------------------------------------------- /i18n/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/eo.ts -------------------------------------------------------------------------------- /i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/es.ts -------------------------------------------------------------------------------- /i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/fr.ts -------------------------------------------------------------------------------- /i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/he.ts -------------------------------------------------------------------------------- /i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/hu.ts -------------------------------------------------------------------------------- /i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/it.ts -------------------------------------------------------------------------------- /i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/ja.ts -------------------------------------------------------------------------------- /i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/ka.ts -------------------------------------------------------------------------------- /i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/ko.ts -------------------------------------------------------------------------------- /i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/lt.ts -------------------------------------------------------------------------------- /i18n/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/nb_NO.ts -------------------------------------------------------------------------------- /i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/nl.ts -------------------------------------------------------------------------------- /i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/pl.ts -------------------------------------------------------------------------------- /i18n/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/pt.ts -------------------------------------------------------------------------------- /i18n/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/pt_BR.ts -------------------------------------------------------------------------------- /i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/ru.ts -------------------------------------------------------------------------------- /i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/sl.ts -------------------------------------------------------------------------------- /i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/sv.ts -------------------------------------------------------------------------------- /i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/tr.ts -------------------------------------------------------------------------------- /i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/uk.ts -------------------------------------------------------------------------------- /i18n/zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/zh_Hans.ts -------------------------------------------------------------------------------- /i18n/zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/Utilities/HEAD/i18n/zh_Hant.ts --------------------------------------------------------------------------------