├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── factoryos-10x-shell.Library ├── Constants │ └── IconConstants.cs ├── Events │ ├── ActionCenterVisibilityChangedEventArgs.cs │ ├── AppsListUpdatedEventArgs.cs │ └── StartVisibilityChangedEventArgs.cs ├── Models │ ├── Hardware │ │ └── BatteryReport.cs │ └── InternalData │ │ ├── StartIconModel.cs │ │ └── UserNotificationModel.cs ├── Properties │ ├── AssemblyInfo.cs │ └── factoryos_10x_shell.Library.rd.xml ├── Services │ ├── Environment │ │ ├── IDispatcherService.cs │ │ ├── IEnvironmentService.cs │ │ ├── IThemeService.cs │ │ └── ITimeService.cs │ ├── Hardware │ │ ├── IBatteryService.cs │ │ ├── IBluetoothService.cs │ │ └── INetworkService.cs │ ├── Helpers │ │ ├── IAppHelper.cs │ │ └── IDialogService.cs │ ├── Managers │ │ ├── IActionCenterManagerService.cs │ │ ├── INotificationManager.cs │ │ ├── IPinManagerService.cs │ │ └── IStartManagerService.cs │ └── Navigation │ │ └── IDesktopNavigator.cs ├── ViewModels │ ├── ActionCenterHomeViewModel.cs │ ├── DebugMenuViewModel.cs │ ├── Default10xBarViewModel.cs │ ├── LockDialogViewModel.cs │ ├── LockScreenViewModel.cs │ ├── MainDesktopViewModel.cs │ ├── PowerDialogViewModel.cs │ └── StartMenuViewModel.cs └── factoryos-10x-shell.Library.csproj ├── factoryos-10x-shell.sln └── factoryos-10x-shell ├── App.Services.xaml.cs ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── Sounds │ ├── AlertCharging.wav │ ├── BootUp.wav │ ├── CalendarReminder.wav │ ├── Default.wav │ ├── DeviceConnect.wav │ ├── DeviceConnectionError.wav │ ├── DeviceDisconnect.wav │ ├── KbdPenCharging.wav │ ├── KbdPenDisconnect.wav │ ├── LowCriticalBatteryAlert.wav │ ├── MessageNudge.wav │ ├── NewMessageNotification.wav │ ├── NotificationMail.wav │ ├── NotificationToast.wav │ └── UserAccountControl.wav ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png ├── Wide310x150Logo.scale-200.png ├── defaultUser.png ├── wallpaper_default.jpg └── waves.jpg ├── Controls ├── ActionCenterExpandableButtonControl.xaml ├── ActionCenterExpandableButtonControl.xaml.cs ├── ActionCenterSegmentedToggle.xaml ├── ActionCenterSegmentedToggle.xaml.cs ├── ActionCenterStandardToggleControl.xaml ├── ActionCenterStandardToggleControl.xaml.cs ├── ErrorDialog.xaml ├── ErrorDialog.xaml.cs ├── LockDialog.xaml ├── LockDialog.xaml.cs ├── PowerDialog.xaml └── PowerDialog.xaml.cs ├── Helpers ├── ProcessStart.cs └── VisualHelper.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Services ├── Environment │ ├── DispatcherService.cs │ ├── EnvironmentService.cs │ ├── ThemeService.cs │ └── TimeService.cs ├── Hardware │ ├── BatteryService.cs │ ├── BluetoothService.cs │ └── NetworkService.cs ├── Helpers │ ├── AppHelper.cs │ └── DialogService.cs ├── Managers │ ├── ActionCenterManagerService.cs │ ├── NotificationManager.cs │ ├── PinManagerService.cs │ └── StartManagerService.cs └── Navigation │ └── DesktopNavigator.cs ├── Views ├── ActionCenterHome.xaml ├── ActionCenterHome.xaml.cs ├── DebugMenu.xaml ├── DebugMenu.xaml.cs ├── Default10xBar.xaml ├── Default10xBar.xaml.cs ├── LockScreen.xaml ├── LockScreen.xaml.cs ├── MainDesktop.xaml ├── MainDesktop.xaml.cs ├── StartMenu.xaml └── StartMenu.xaml.cs └── factoryos-10x-shell.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/README.md -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Constants/IconConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Constants/IconConstants.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Events/ActionCenterVisibilityChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Events/ActionCenterVisibilityChangedEventArgs.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Events/AppsListUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Events/AppsListUpdatedEventArgs.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Events/StartVisibilityChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Events/StartVisibilityChangedEventArgs.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Models/Hardware/BatteryReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Models/Hardware/BatteryReport.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Models/InternalData/StartIconModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Models/InternalData/StartIconModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Models/InternalData/UserNotificationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Models/InternalData/UserNotificationModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Properties/factoryos_10x_shell.Library.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Properties/factoryos_10x_shell.Library.rd.xml -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Environment/IDispatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Environment/IDispatcherService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Environment/IEnvironmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Environment/IEnvironmentService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Environment/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Environment/IThemeService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Environment/ITimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Environment/ITimeService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Hardware/IBatteryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Hardware/IBatteryService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Hardware/IBluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Hardware/IBluetoothService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Hardware/INetworkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Hardware/INetworkService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Helpers/IAppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Helpers/IAppHelper.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Helpers/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Helpers/IDialogService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Managers/IActionCenterManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Managers/IActionCenterManagerService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Managers/INotificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Managers/INotificationManager.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Managers/IPinManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Managers/IPinManagerService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Managers/IStartManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Managers/IStartManagerService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/Services/Navigation/IDesktopNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/Services/Navigation/IDesktopNavigator.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/ActionCenterHomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/ActionCenterHomeViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/DebugMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/DebugMenuViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/Default10xBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/Default10xBarViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/LockDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/LockDialogViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/LockScreenViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/LockScreenViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/MainDesktopViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/MainDesktopViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/PowerDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/PowerDialogViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/ViewModels/StartMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/ViewModels/StartMenuViewModel.cs -------------------------------------------------------------------------------- /factoryos-10x-shell.Library/factoryos-10x-shell.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.Library/factoryos-10x-shell.Library.csproj -------------------------------------------------------------------------------- /factoryos-10x-shell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell.sln -------------------------------------------------------------------------------- /factoryos-10x-shell/App.Services.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/App.Services.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/App.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/App.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/AlertCharging.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/AlertCharging.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/BootUp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/BootUp.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/CalendarReminder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/CalendarReminder.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/Default.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/Default.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/DeviceConnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/DeviceConnect.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/DeviceConnectionError.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/DeviceConnectionError.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/DeviceDisconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/DeviceDisconnect.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/KbdPenCharging.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/KbdPenCharging.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/KbdPenDisconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/KbdPenDisconnect.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/LowCriticalBatteryAlert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/LowCriticalBatteryAlert.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/MessageNudge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/MessageNudge.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/NewMessageNotification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/NewMessageNotification.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/NotificationMail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/NotificationMail.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/NotificationToast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/NotificationToast.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Sounds/UserAccountControl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Sounds/UserAccountControl.wav -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/StoreLogo.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/defaultUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/defaultUser.png -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/wallpaper_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/wallpaper_default.jpg -------------------------------------------------------------------------------- /factoryos-10x-shell/Assets/waves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Assets/waves.jpg -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ActionCenterExpandableButtonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ActionCenterExpandableButtonControl.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ActionCenterExpandableButtonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ActionCenterExpandableButtonControl.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ActionCenterSegmentedToggle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ActionCenterSegmentedToggle.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ActionCenterSegmentedToggle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ActionCenterSegmentedToggle.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ActionCenterStandardToggleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ActionCenterStandardToggleControl.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ActionCenterStandardToggleControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ActionCenterStandardToggleControl.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ErrorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ErrorDialog.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/ErrorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/ErrorDialog.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/LockDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/LockDialog.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/LockDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/LockDialog.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/PowerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/PowerDialog.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Controls/PowerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Controls/PowerDialog.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Helpers/ProcessStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Helpers/ProcessStart.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Helpers/VisualHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Helpers/VisualHelper.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/MainPage.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/MainPage.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Package.appxmanifest -------------------------------------------------------------------------------- /factoryos-10x-shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Properties/Default.rd.xml -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Environment/DispatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Environment/DispatcherService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Environment/EnvironmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Environment/EnvironmentService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Environment/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Environment/ThemeService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Environment/TimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Environment/TimeService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Hardware/BatteryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Hardware/BatteryService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Hardware/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Hardware/BluetoothService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Hardware/NetworkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Hardware/NetworkService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Helpers/AppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Helpers/AppHelper.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Helpers/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Helpers/DialogService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Managers/ActionCenterManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Managers/ActionCenterManagerService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Managers/NotificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Managers/NotificationManager.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Managers/PinManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Managers/PinManagerService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Managers/StartManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Managers/StartManagerService.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Services/Navigation/DesktopNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Services/Navigation/DesktopNavigator.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/ActionCenterHome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/ActionCenterHome.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/ActionCenterHome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/ActionCenterHome.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/DebugMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/DebugMenu.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/DebugMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/DebugMenu.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/Default10xBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/Default10xBar.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/Default10xBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/Default10xBar.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/LockScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/LockScreen.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/LockScreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/LockScreen.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/MainDesktop.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/MainDesktop.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/MainDesktop.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/MainDesktop.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/StartMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/StartMenu.xaml -------------------------------------------------------------------------------- /factoryos-10x-shell/Views/StartMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/Views/StartMenu.xaml.cs -------------------------------------------------------------------------------- /factoryos-10x-shell/factoryos-10x-shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pdawg-bytes/factoryos-10x-shell/HEAD/factoryos-10x-shell/factoryos-10x-shell.csproj --------------------------------------------------------------------------------