├── .gitattributes ├── .gitignore ├── .tfignore ├── LICENSE ├── WinLaunch.sln └── WinLaunch ├── ActivationMethods ├── DoubleKeytapActivation.cs ├── HotCorners.cs ├── Hotkey.cs ├── MiddleMouseActivation.cs ├── ShortcutActivation.cs ├── VoiceActivation.cs └── WindowsKeyActivation.cs ├── App.xaml ├── App.xaml.cs ├── Assistant ├── Assistant.cs ├── AssistantConfig.cs ├── AssistantStates.cs ├── AssistantUI.cs ├── Functions │ ├── calendar.cs │ ├── commands.cs │ ├── gmail.cs │ ├── items.cs │ ├── memory.cs │ ├── messages.cs │ ├── people.cs │ ├── system.cs │ └── utils.cs └── UI │ ├── calendar.xaml │ ├── commands.xaml │ ├── gmail.xaml │ ├── items.xaml │ ├── memory.xaml │ ├── messages.xaml │ ├── people.xaml │ ├── system.xaml │ └── utils.xaml ├── AssistantResponseStyle.xaml ├── ContextMenu.xaml ├── Converters └── Converters.cs ├── Darkening.cs ├── Darkening.fx ├── Darkening.ps ├── DiscordButton.xaml ├── HookWindowsKey.dll ├── Images ├── UpdateSmall.ico └── icon.ico ├── Language └── nsLoc.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindow ├── Events.cs ├── Extensions.cs ├── GamepadControls.cs ├── ItemManagement.cs ├── Rendering.cs ├── SettingsManagement.cs └── WindowManagement.cs ├── OSXTabBar.xaml ├── OSXTabControl.xaml ├── PortabilityManager.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.bg-BG.resx ├── Resources.da-DK.resx ├── Resources.de-DE.Designer.cs ├── Resources.de-DE.resx ├── Resources.en-US.Designer.cs ├── Resources.en-US.resx ├── Resources.es-ES.resx ├── Resources.fr-FR.resx ├── Resources.he-IL.resx ├── Resources.hu-HU.resx ├── Resources.id-ID.resx ├── Resources.it-IT.resx ├── Resources.ja-JP.resx ├── Resources.pl-PL.resx ├── Resources.pt-BR.resx ├── Resources.resx ├── Resources.ru-RU.resx ├── Resources.tr-TR.resx ├── Resources.uk-UA.resx ├── Resources.zh-CN.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings.cs ├── Springboard ├── Folders.cs ├── GridManager.cs ├── ItemCollection.cs ├── SBItem.cs ├── SpringPages.cs └── SpringboardManager.cs ├── Theme ├── Theme.cs └── Themes.cs ├── Themes └── Generic.xaml ├── ThinScrollBar.xaml ├── Utils ├── AnimationHelper.cs ├── Autostart.cs ├── BackupManager.cs ├── DesktopFileWatcher.cs ├── DoubleClickEvent.cs ├── EncryptionUtils.cs ├── GetIcon.cs ├── GlassUtils.cs ├── Integration.cs ├── RegistryMonitor.cs ├── RelayCommand.cs ├── Trie.cs ├── UpdateCheck.cs ├── Utils.cs └── WallpaperWatcher.cs ├── WPFToolkit.Extended.dll ├── WinLaunch.csproj ├── Windows ├── AddLink.xaml ├── AddLink.xaml.cs ├── EditItem.xaml ├── EditItem.xaml.cs ├── Eula.xaml ├── Eula.xaml.cs ├── InstantSettings.xaml ├── InstantSettings.xaml.cs ├── Welcome.xaml └── Welcome.xaml.cs ├── XInputDotNetPure.dll ├── XInputInterface.dll ├── app.config ├── app.manifest ├── icon.ico ├── packages.config └── res ├── Fonts └── SF-Pro-Display-Regular.otf ├── Loading.png ├── Logo.bright.png ├── Logo.png ├── Settings.png ├── Settings ├── Arrow.png ├── Monitor.png ├── Update.png ├── about.ico ├── backup.png ├── delete.png ├── discord.png ├── dualMonitors.ico ├── general.png ├── items.png ├── language.ico ├── lightning.png ├── lock.ico ├── personalization.png ├── refresh.png ├── reset.png ├── save.png ├── synaptics.png ├── themes.png ├── unlock.ico ├── volunteer.png └── welcome.png ├── SyntaxHighlighting └── DarkUniversal.xshd ├── UpdateSmall.ico ├── add.png ├── add_dark.png ├── assistant ├── assistant.png ├── assistantPending.png ├── brain.png ├── brush.png ├── calendar.png ├── clear.png ├── command.png ├── contact.png ├── date.png ├── games.png ├── location.png ├── mail.png ├── message.png ├── minus.png ├── note.png ├── person.png ├── phone.png ├── pro.png ├── python.png ├── reconnect.png ├── refresh.png ├── search.png ├── send.png ├── time.png └── user.png ├── backup.png ├── cancel.png ├── closebox.png ├── context ├── add.png ├── admin.png ├── edit.png ├── folder.png ├── launch.png ├── quit.png ├── refresh_white.png ├── settings.png ├── trash.png └── tutorial.png ├── drop.png ├── drop_.png ├── extensions.png ├── folder ├── arrow.png ├── bottomBorder.png ├── bottomShadow.png ├── center.png ├── leftBottomBorder.png ├── leftBottomShadow.png ├── leftCenter.png ├── leftTop.png ├── rightBottomBorder.png ├── rightBottomShadow.png ├── rightCenter.png ├── rightTop.png └── topRim.png ├── folder_icon_transparent.png ├── folder_rim_top.png ├── icon.png ├── minus.png ├── quit.png ├── refresh.png ├── save.png ├── search.png ├── shadow.png ├── tutorial.png └── web.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/.gitignore -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | \.git -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/LICENSE -------------------------------------------------------------------------------- /WinLaunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch.sln -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/DoubleKeytapActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/DoubleKeytapActivation.cs -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/HotCorners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/HotCorners.cs -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/Hotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/Hotkey.cs -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/MiddleMouseActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/MiddleMouseActivation.cs -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/ShortcutActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/ShortcutActivation.cs -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/VoiceActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/VoiceActivation.cs -------------------------------------------------------------------------------- /WinLaunch/ActivationMethods/WindowsKeyActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ActivationMethods/WindowsKeyActivation.cs -------------------------------------------------------------------------------- /WinLaunch/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/App.xaml -------------------------------------------------------------------------------- /WinLaunch/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/App.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Assistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Assistant.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/AssistantConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/AssistantConfig.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/AssistantStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/AssistantStates.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/AssistantUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/AssistantUI.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/calendar.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/commands.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/gmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/gmail.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/items.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/items.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/memory.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/messages.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/people.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/people.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/system.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/system.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/Functions/utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/Functions/utils.cs -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/calendar.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/commands.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/commands.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/gmail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/gmail.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/items.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/items.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/memory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/memory.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/messages.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/messages.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/people.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/people.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/system.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/system.xaml -------------------------------------------------------------------------------- /WinLaunch/Assistant/UI/utils.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Assistant/UI/utils.xaml -------------------------------------------------------------------------------- /WinLaunch/AssistantResponseStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/AssistantResponseStyle.xaml -------------------------------------------------------------------------------- /WinLaunch/ContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ContextMenu.xaml -------------------------------------------------------------------------------- /WinLaunch/Converters/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Converters/Converters.cs -------------------------------------------------------------------------------- /WinLaunch/Darkening.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Darkening.cs -------------------------------------------------------------------------------- /WinLaunch/Darkening.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Darkening.fx -------------------------------------------------------------------------------- /WinLaunch/Darkening.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Darkening.ps -------------------------------------------------------------------------------- /WinLaunch/DiscordButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/DiscordButton.xaml -------------------------------------------------------------------------------- /WinLaunch/HookWindowsKey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/HookWindowsKey.dll -------------------------------------------------------------------------------- /WinLaunch/Images/UpdateSmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Images/UpdateSmall.ico -------------------------------------------------------------------------------- /WinLaunch/Images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Images/icon.ico -------------------------------------------------------------------------------- /WinLaunch/Language/nsLoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Language/nsLoc.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow.xaml -------------------------------------------------------------------------------- /WinLaunch/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/Events.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/Extensions.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/GamepadControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/GamepadControls.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/ItemManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/ItemManagement.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/Rendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/Rendering.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/SettingsManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/SettingsManagement.cs -------------------------------------------------------------------------------- /WinLaunch/MainWindow/WindowManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/MainWindow/WindowManagement.cs -------------------------------------------------------------------------------- /WinLaunch/OSXTabBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/OSXTabBar.xaml -------------------------------------------------------------------------------- /WinLaunch/OSXTabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/OSXTabControl.xaml -------------------------------------------------------------------------------- /WinLaunch/PortabilityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/PortabilityManager.cs -------------------------------------------------------------------------------- /WinLaunch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.bg-BG.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.bg-BG.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.da-DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.da-DK.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.de-DE.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.de-DE.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.en-US.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.en-US.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.es-ES.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.fr-FR.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.he-IL.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.hu-HU.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.id-ID.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.id-ID.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.ja-JP.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.pl-PL.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.pt-BR.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.ru-RU.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.tr-TR.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.uk-UA.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /WinLaunch/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinLaunch/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Properties/Settings.settings -------------------------------------------------------------------------------- /WinLaunch/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Settings.cs -------------------------------------------------------------------------------- /WinLaunch/Springboard/Folders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Springboard/Folders.cs -------------------------------------------------------------------------------- /WinLaunch/Springboard/GridManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Springboard/GridManager.cs -------------------------------------------------------------------------------- /WinLaunch/Springboard/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Springboard/ItemCollection.cs -------------------------------------------------------------------------------- /WinLaunch/Springboard/SBItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Springboard/SBItem.cs -------------------------------------------------------------------------------- /WinLaunch/Springboard/SpringPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Springboard/SpringPages.cs -------------------------------------------------------------------------------- /WinLaunch/Springboard/SpringboardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Springboard/SpringboardManager.cs -------------------------------------------------------------------------------- /WinLaunch/Theme/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Theme/Theme.cs -------------------------------------------------------------------------------- /WinLaunch/Theme/Themes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Theme/Themes.cs -------------------------------------------------------------------------------- /WinLaunch/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Themes/Generic.xaml -------------------------------------------------------------------------------- /WinLaunch/ThinScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/ThinScrollBar.xaml -------------------------------------------------------------------------------- /WinLaunch/Utils/AnimationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/AnimationHelper.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/Autostart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/Autostart.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/BackupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/BackupManager.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/DesktopFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/DesktopFileWatcher.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/DoubleClickEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/DoubleClickEvent.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/EncryptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/EncryptionUtils.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/GetIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/GetIcon.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/GlassUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/GlassUtils.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/Integration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/Integration.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/RegistryMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/RegistryMonitor.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/RelayCommand.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/Trie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/Trie.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/UpdateCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/UpdateCheck.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/Utils.cs -------------------------------------------------------------------------------- /WinLaunch/Utils/WallpaperWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Utils/WallpaperWatcher.cs -------------------------------------------------------------------------------- /WinLaunch/WPFToolkit.Extended.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/WPFToolkit.Extended.dll -------------------------------------------------------------------------------- /WinLaunch/WinLaunch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/WinLaunch.csproj -------------------------------------------------------------------------------- /WinLaunch/Windows/AddLink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/AddLink.xaml -------------------------------------------------------------------------------- /WinLaunch/Windows/AddLink.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/AddLink.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/Windows/EditItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/EditItem.xaml -------------------------------------------------------------------------------- /WinLaunch/Windows/EditItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/EditItem.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/Windows/Eula.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/Eula.xaml -------------------------------------------------------------------------------- /WinLaunch/Windows/Eula.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/Eula.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/Windows/InstantSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/InstantSettings.xaml -------------------------------------------------------------------------------- /WinLaunch/Windows/InstantSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/InstantSettings.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/Windows/Welcome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/Welcome.xaml -------------------------------------------------------------------------------- /WinLaunch/Windows/Welcome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/Windows/Welcome.xaml.cs -------------------------------------------------------------------------------- /WinLaunch/XInputDotNetPure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/XInputDotNetPure.dll -------------------------------------------------------------------------------- /WinLaunch/XInputInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/XInputInterface.dll -------------------------------------------------------------------------------- /WinLaunch/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/app.config -------------------------------------------------------------------------------- /WinLaunch/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/app.manifest -------------------------------------------------------------------------------- /WinLaunch/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/icon.ico -------------------------------------------------------------------------------- /WinLaunch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/packages.config -------------------------------------------------------------------------------- /WinLaunch/res/Fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /WinLaunch/res/Loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Loading.png -------------------------------------------------------------------------------- /WinLaunch/res/Logo.bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Logo.bright.png -------------------------------------------------------------------------------- /WinLaunch/res/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Logo.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/Arrow.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/Monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/Monitor.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/Update.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/about.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/about.ico -------------------------------------------------------------------------------- /WinLaunch/res/Settings/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/backup.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/delete.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/discord.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/dualMonitors.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/dualMonitors.ico -------------------------------------------------------------------------------- /WinLaunch/res/Settings/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/general.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/items.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/language.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/language.ico -------------------------------------------------------------------------------- /WinLaunch/res/Settings/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/lightning.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/lock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/lock.ico -------------------------------------------------------------------------------- /WinLaunch/res/Settings/personalization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/personalization.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/refresh.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/reset.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/save.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/synaptics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/synaptics.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/themes.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/unlock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/unlock.ico -------------------------------------------------------------------------------- /WinLaunch/res/Settings/volunteer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/volunteer.png -------------------------------------------------------------------------------- /WinLaunch/res/Settings/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/Settings/welcome.png -------------------------------------------------------------------------------- /WinLaunch/res/SyntaxHighlighting/DarkUniversal.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/SyntaxHighlighting/DarkUniversal.xshd -------------------------------------------------------------------------------- /WinLaunch/res/UpdateSmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/UpdateSmall.ico -------------------------------------------------------------------------------- /WinLaunch/res/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/add.png -------------------------------------------------------------------------------- /WinLaunch/res/add_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/add_dark.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/assistant.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/assistantPending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/assistantPending.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/brain.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/brush.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/calendar.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/clear.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/command.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/contact.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/date.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/games.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/location.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/mail.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/message.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/minus.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/note.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/person.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/phone.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/pro.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/python.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/reconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/reconnect.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/refresh.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/search.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/send.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/time.png -------------------------------------------------------------------------------- /WinLaunch/res/assistant/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/assistant/user.png -------------------------------------------------------------------------------- /WinLaunch/res/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/backup.png -------------------------------------------------------------------------------- /WinLaunch/res/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/cancel.png -------------------------------------------------------------------------------- /WinLaunch/res/closebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/closebox.png -------------------------------------------------------------------------------- /WinLaunch/res/context/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/add.png -------------------------------------------------------------------------------- /WinLaunch/res/context/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/admin.png -------------------------------------------------------------------------------- /WinLaunch/res/context/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/edit.png -------------------------------------------------------------------------------- /WinLaunch/res/context/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/folder.png -------------------------------------------------------------------------------- /WinLaunch/res/context/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/launch.png -------------------------------------------------------------------------------- /WinLaunch/res/context/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/quit.png -------------------------------------------------------------------------------- /WinLaunch/res/context/refresh_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/refresh_white.png -------------------------------------------------------------------------------- /WinLaunch/res/context/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/settings.png -------------------------------------------------------------------------------- /WinLaunch/res/context/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/trash.png -------------------------------------------------------------------------------- /WinLaunch/res/context/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/context/tutorial.png -------------------------------------------------------------------------------- /WinLaunch/res/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/drop.png -------------------------------------------------------------------------------- /WinLaunch/res/drop_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/drop_.png -------------------------------------------------------------------------------- /WinLaunch/res/extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/extensions.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/arrow.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/bottomBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/bottomBorder.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/bottomShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/bottomShadow.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/center.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/leftBottomBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/leftBottomBorder.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/leftBottomShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/leftBottomShadow.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/leftCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/leftCenter.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/leftTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/leftTop.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/rightBottomBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/rightBottomBorder.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/rightBottomShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/rightBottomShadow.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/rightCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/rightCenter.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/rightTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/rightTop.png -------------------------------------------------------------------------------- /WinLaunch/res/folder/topRim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder/topRim.png -------------------------------------------------------------------------------- /WinLaunch/res/folder_icon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder_icon_transparent.png -------------------------------------------------------------------------------- /WinLaunch/res/folder_rim_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/folder_rim_top.png -------------------------------------------------------------------------------- /WinLaunch/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/icon.png -------------------------------------------------------------------------------- /WinLaunch/res/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/minus.png -------------------------------------------------------------------------------- /WinLaunch/res/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/quit.png -------------------------------------------------------------------------------- /WinLaunch/res/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/refresh.png -------------------------------------------------------------------------------- /WinLaunch/res/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/save.png -------------------------------------------------------------------------------- /WinLaunch/res/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/search.png -------------------------------------------------------------------------------- /WinLaunch/res/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/shadow.png -------------------------------------------------------------------------------- /WinLaunch/res/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/tutorial.png -------------------------------------------------------------------------------- /WinLaunch/res/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensroth-git/WinLaunch/HEAD/WinLaunch/res/web.png --------------------------------------------------------------------------------