├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Artworks ├── AppIcon.png ├── HavocMarketing.png └── IconDrawer.swift ├── LICENSE ├── Makefile ├── README.md ├── RWBGPrefs ├── Frameworks │ ├── AltList.framework │ │ └── AltList.tbd │ ├── Preferences.framework │ │ └── Preferences.tbd │ ├── _Simulator │ │ ├── AltList.framework │ │ │ └── AltList.tbd │ │ └── Preferences.framework │ │ │ └── Preferences.tbd │ ├── _roothide │ │ ├── AltList.framework │ │ │ └── AltList.tbd │ │ └── Preferences.framework │ └── _rootless │ │ ├── AltList.framework │ │ └── AltList.tbd │ │ └── Preferences.framework ├── Makefile ├── RWBGRootListController.h ├── RWBGRootListController.m ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Root.strings │ ├── icon@2x.png │ ├── icon@3x.png │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ └── Root.strings ├── control └── layout │ └── Library │ └── PreferenceLoader │ └── Preferences │ └── RWBGPrefs │ └── Root.plist ├── RemoveWidgetBackground.plist ├── RemoveWidgetBackground.x ├── devkit ├── env.sh ├── roothide.sh ├── rootless.sh ├── sim-install.sh ├── sim-launch.sh └── simulator.sh └── layout └── DEBIAN ├── control ├── postinst └── postrm /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/.gitignore -------------------------------------------------------------------------------- /Artworks/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/Artworks/AppIcon.png -------------------------------------------------------------------------------- /Artworks/HavocMarketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/Artworks/HavocMarketing.png -------------------------------------------------------------------------------- /Artworks/IconDrawer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/Artworks/IconDrawer.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/README.md -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Frameworks/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/Preferences.framework/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Frameworks/Preferences.framework/Preferences.tbd -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/_Simulator/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Frameworks/_Simulator/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/_Simulator/Preferences.framework/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Frameworks/_Simulator/Preferences.framework/Preferences.tbd -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/_roothide/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Frameworks/_roothide/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/_roothide/Preferences.framework: -------------------------------------------------------------------------------- 1 | ../Preferences.framework -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/_rootless/AltList.framework/AltList.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Frameworks/_rootless/AltList.framework/AltList.tbd -------------------------------------------------------------------------------- /RWBGPrefs/Frameworks/_rootless/Preferences.framework: -------------------------------------------------------------------------------- 1 | ../Preferences.framework -------------------------------------------------------------------------------- /RWBGPrefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Makefile -------------------------------------------------------------------------------- /RWBGPrefs/RWBGRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/RWBGRootListController.h -------------------------------------------------------------------------------- /RWBGPrefs/RWBGRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/RWBGRootListController.m -------------------------------------------------------------------------------- /RWBGPrefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/Info.plist -------------------------------------------------------------------------------- /RWBGPrefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/Root.plist -------------------------------------------------------------------------------- /RWBGPrefs/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /RWBGPrefs/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /RWBGPrefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /RWBGPrefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /RWBGPrefs/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "CFBundleDisplayName" = "透明小组件"; 3 | -------------------------------------------------------------------------------- /RWBGPrefs/Resources/zh-Hans.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/Resources/zh-Hans.lproj/Root.strings -------------------------------------------------------------------------------- /RWBGPrefs/control: -------------------------------------------------------------------------------- 1 | ../layout/DEBIAN/control -------------------------------------------------------------------------------- /RWBGPrefs/layout/Library/PreferenceLoader/Preferences/RWBGPrefs/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RWBGPrefs/layout/Library/PreferenceLoader/Preferences/RWBGPrefs/Root.plist -------------------------------------------------------------------------------- /RemoveWidgetBackground.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RemoveWidgetBackground.plist -------------------------------------------------------------------------------- /RemoveWidgetBackground.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/RemoveWidgetBackground.x -------------------------------------------------------------------------------- /devkit/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/devkit/env.sh -------------------------------------------------------------------------------- /devkit/roothide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/devkit/roothide.sh -------------------------------------------------------------------------------- /devkit/rootless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/devkit/rootless.sh -------------------------------------------------------------------------------- /devkit/sim-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/devkit/sim-install.sh -------------------------------------------------------------------------------- /devkit/sim-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/devkit/sim-launch.sh -------------------------------------------------------------------------------- /devkit/simulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/devkit/simulator.sh -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwnGoalStudio/RemoveWidgetBackground/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | killall -9 chronod > /dev/null 2>&1 4 | 5 | exit 0 -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | killall -9 chronod > /dev/null 2>&1 4 | 5 | exit 0 --------------------------------------------------------------------------------