├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── dotnet-desktop.yml ├── .gitignore ├── LICENSE ├── README.md ├── RunCat.sln └── RunCat ├── Program.cs ├── Properties ├── PublishProfiles │ ├── PublishProfile-ARM64.pubxml │ ├── PublishProfile.pubxml │ ├── PublishProfile.pubxml.user │ ├── PublishWithDotNetProdile-ARM64.pubxml │ └── PublishWithDotNetProdile.pubxml ├── Resources.Designer.cs ├── Resources.resx ├── UserSettings.Designer.cs └── UserSettings.settings ├── RunCat.csproj ├── appIcon.ico └── resources ├── appIcon.ico ├── cat ├── dark_cat_0.ico ├── dark_cat_1.ico ├── dark_cat_2.ico ├── dark_cat_3.ico ├── dark_cat_4.ico ├── light_cat_0.ico ├── light_cat_1.ico ├── light_cat_2.ico ├── light_cat_3.ico └── light_cat_4.ico ├── horse ├── dark_horse_0.ico ├── dark_horse_1.ico ├── dark_horse_10.ico ├── dark_horse_11.ico ├── dark_horse_12.ico ├── dark_horse_13.ico ├── dark_horse_2.ico ├── dark_horse_3.ico ├── dark_horse_4.ico ├── dark_horse_5.ico ├── dark_horse_6.ico ├── dark_horse_7.ico ├── dark_horse_8.ico ├── dark_horse_9.ico ├── light_horse_0.ico ├── light_horse_1.ico ├── light_horse_10.ico ├── light_horse_11.ico ├── light_horse_12.ico ├── light_horse_13.ico ├── light_horse_2.ico ├── light_horse_3.ico ├── light_horse_4.ico ├── light_horse_5.ico ├── light_horse_6.ico ├── light_horse_7.ico ├── light_horse_8.ico └── light_horse_9.ico ├── japaneseapology ├── dark_japaneseapology_0.ico ├── dark_japaneseapology_1.ico ├── dark_japaneseapology_10.ico ├── dark_japaneseapology_11.ico ├── dark_japaneseapology_12.ico ├── dark_japaneseapology_13.ico ├── dark_japaneseapology_14.ico ├── dark_japaneseapology_15.ico ├── dark_japaneseapology_16.ico ├── dark_japaneseapology_2.ico ├── dark_japaneseapology_3.ico ├── dark_japaneseapology_4.ico ├── dark_japaneseapology_5.ico ├── dark_japaneseapology_6.ico ├── dark_japaneseapology_7.ico ├── dark_japaneseapology_8.ico ├── dark_japaneseapology_9.ico ├── light_japaneseapology_0.ico ├── light_japaneseapology_1.ico ├── light_japaneseapology_10.ico ├── light_japaneseapology_11.ico ├── light_japaneseapology_12.ico ├── light_japaneseapology_13.ico ├── light_japaneseapology_14.ico ├── light_japaneseapology_15.ico ├── light_japaneseapology_16.ico ├── light_japaneseapology_2.ico ├── light_japaneseapology_3.ico ├── light_japaneseapology_4.ico ├── light_japaneseapology_5.ico ├── light_japaneseapology_6.ico ├── light_japaneseapology_7.ico ├── light_japaneseapology_8.ico └── light_japaneseapology_9.ico ├── parrot ├── dark_parrot_0.ico ├── dark_parrot_1.ico ├── dark_parrot_2.ico ├── dark_parrot_3.ico ├── dark_parrot_4.ico ├── dark_parrot_5.ico ├── dark_parrot_6.ico ├── dark_parrot_7.ico ├── dark_parrot_8.ico ├── dark_parrot_9.ico ├── light_parrot_0.ico ├── light_parrot_1.ico ├── light_parrot_2.ico ├── light_parrot_3.ico ├── light_parrot_4.ico ├── light_parrot_5.ico ├── light_parrot_6.ico ├── light_parrot_7.ico ├── light_parrot_8.ico └── light_parrot_9.ico └── runcat_demo.gif /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | -------------------------------------------------------------------------------- /.github/workflows/dotnet-desktop.yml: -------------------------------------------------------------------------------- 1 | name: .NET 6.0 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: [ master ] 7 | pull_request: 8 | branches: [ master ] 9 | 10 | jobs: 11 | build: 12 | 13 | runs-on: windows-latest 14 | 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v4 18 | 19 | - name: Setup .NET 20 | uses: actions/setup-dotnet@v4 21 | with: 22 | dotnet-version: '6.0.x' 23 | 24 | - name: Restore dependencies 25 | run: dotnet restore 26 | 27 | - name: Build 28 | run: dotnet build --no-restore -c Release 29 | 30 | - name: Test 31 | run: dotnet test --no-build --verbosity normal 32 | 33 | - name: Publish 64-bit 34 | run: dotnet publish --configuration Release --no-self-contained --runtime win-x64 --output ./published_app/Release64 35 | 36 | - name: Publish 32-bit 37 | run: dotnet publish --configuration Release --no-self-contained --runtime win-x86 --output ./published_app/Release86 38 | 39 | - name: Publish ARM64 40 | run: dotnet publish --configuration Release --no-self-contained --runtime win-arm64 --output ./published_app/ReleaseARM64 41 | 42 | - name: Upload 64-bit artifacts 43 | uses: actions/upload-artifact@v2 44 | with: 45 | name: compiled-application-64 46 | path: | 47 | ./published_app/Release64/* 48 | 49 | - name: Upload 32-bit artifacts 50 | uses: actions/upload-artifact@v2 51 | with: 52 | name: compiled-application-32 53 | path: | 54 | ./published_app/Release86/* 55 | 56 | - name: Upload ARM64 artifacts 57 | uses: actions/upload-artifact@v2 58 | with: 59 | name: compiled-application-ARM64 60 | path: | 61 | ./published_app/ReleaseARM64/* 62 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | [Ll]og/ 5 | [Ll]ogs/ 6 | .DS_Store 7 | 8 | # User-specific files 9 | *.suo 10 | *.user 11 | *.userosscache 12 | *.sln.docstates -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RunCat_for_windows 2 | 3 | **A cute running cat animation on your windows taskbar.** 4 | 5 | [![Github issues](https://img.shields.io/github/issues/Kyome22/RunCat_for_windows)](https://github.com/Kyome22/RunCat_for_windows/issues) 6 | [![Github forks](https://img.shields.io/github/forks/Kyome22/RunCat_for_windows)](https://github.com/Kyome22/RunCat_for_windows/network/members) 7 | [![Github stars](https://img.shields.io/github/stars/Kyome22/RunCat_for_windows)](https://github.com/Kyome22/RunCat_for_windows/stargazers) 8 | [![Top language](https://img.shields.io/github/languages/top/Kyome22/RunCat_for_windows)](https://github.com/Kyome22/RunCat_for_windows/) 9 | [![Release](https://img.shields.io/github/v/release/Kyome22/RunCat_for_windows)]() 10 | [![Github license](https://img.shields.io/github/license/Kyome22/RunCat_for_windows)](https://github.com/Kyome22/RunCat_for_windows/) 11 | 12 | # Tags 13 | 14 | `C#` `.NET 6.0` `Visual Studio` `RunCat` 15 | 16 | # Demo 17 | 18 | ![Demo](RunCat/resources/runcat_demo.gif) 19 | 20 | **You only have to run the RunCat.exe.** 21 | 22 | # Installation 23 | 24 | **Access to the "Releases" page and download the RunCat.exe.** 25 | 26 | - Or install via [Scoop](https://github.com/ScoopInstaller/Scoop) (x64 version): 27 | `scoop bucket add extras`, `scoop install runcat` 28 | 29 | # Contributors 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /RunCat.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.2.32616.157 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RunCat", "RunCat\RunCat.csproj", "{10064461-1376-41CF-B6DA-A67B71BB2AC9}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|ARM64 = Debug|ARM64 12 | Debug|x64 = Debug|x64 13 | Release|Any CPU = Release|Any CPU 14 | Release|ARM64 = Release|ARM64 15 | Release|x64 = Release|x64 16 | EndGlobalSection 17 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 18 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Debug|ARM64.ActiveCfg = Debug|ARM64 21 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Debug|ARM64.Build.0 = Debug|ARM64 22 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Debug|x64.ActiveCfg = Debug|x64 23 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Debug|x64.Build.0 = Debug|x64 24 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Release|Any CPU.Build.0 = Release|Any CPU 26 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Release|ARM64.ActiveCfg = Release|ARM64 27 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Release|ARM64.Build.0 = Release|ARM64 28 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Release|x64.ActiveCfg = Release|x64 29 | {10064461-1376-41CF-B6DA-A67B71BB2AC9}.Release|x64.Build.0 = Release|x64 30 | EndGlobalSection 31 | GlobalSection(SolutionProperties) = preSolution 32 | HideSolutionNode = FALSE 33 | EndGlobalSection 34 | GlobalSection(ExtensibilityGlobals) = postSolution 35 | SolutionGuid = {7D6F6313-0157-43AE-8251-D67756F32A48} 36 | EndGlobalSection 37 | EndGlobal 38 | -------------------------------------------------------------------------------- /RunCat/Program.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2020 Takuto Nakamura 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using RunCat.Properties; 16 | using Microsoft.Win32; 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Drawing; 20 | using System.Diagnostics; 21 | using System.Windows.Forms; 22 | using System.Resources; 23 | using System.ComponentModel; 24 | 25 | namespace RunCat 26 | { 27 | static class Program 28 | { 29 | [STAThread] 30 | static void Main() 31 | { 32 | // terminate runcat if there's any existing instance 33 | var procMutex = new System.Threading.Mutex(true, "_RUNCAT_MUTEX", out var result); 34 | if (!result) 35 | { 36 | return; 37 | } 38 | 39 | Application.EnableVisualStyles(); 40 | Application.SetCompatibleTextRenderingDefault(false); 41 | Application.SetHighDpiMode(HighDpiMode.SystemAware); 42 | Application.Run(new RunCatApplicationContext()); 43 | 44 | procMutex.ReleaseMutex(); 45 | } 46 | } 47 | 48 | public class RunCatApplicationContext : ApplicationContext 49 | { 50 | private const int CPU_TIMER_DEFAULT_INTERVAL = 3000; 51 | private const int ANIMATE_TIMER_DEFAULT_INTERVAL = 200; 52 | private PerformanceCounter cpuUsage; 53 | private ToolStripMenuItem runnerMenu; 54 | private ToolStripMenuItem themeMenu; 55 | private ToolStripMenuItem startupMenu; 56 | private ToolStripMenuItem runnerSpeedLimit; 57 | private NotifyIcon notifyIcon; 58 | private string runner = ""; 59 | private int current = 0; 60 | private float minCPU; 61 | private float interval; 62 | private string systemTheme = ""; 63 | private string manualTheme = UserSettings.Default.Theme; 64 | private string speed = UserSettings.Default.Speed; 65 | private Icon[] icons; 66 | private Timer animateTimer = new Timer(); 67 | private Timer cpuTimer = new Timer(); 68 | 69 | 70 | public RunCatApplicationContext() 71 | { 72 | UserSettings.Default.Reload(); 73 | runner = UserSettings.Default.Runner; 74 | manualTheme = UserSettings.Default.Theme; 75 | 76 | Application.ApplicationExit += new EventHandler(OnApplicationExit); 77 | 78 | SystemEvents.UserPreferenceChanged += new UserPreferenceChangedEventHandler(UserPreferenceChanged); 79 | 80 | cpuUsage = new PerformanceCounter("Processor Information", "% Processor Utility", "_Total"); 81 | _ = cpuUsage.NextValue(); // discards first return value 82 | 83 | runnerMenu = new ToolStripMenuItem("Runner", null, new ToolStripMenuItem[] 84 | { 85 | new ToolStripMenuItem("Cat", null, SetRunner) 86 | { 87 | Checked = runner.Equals("cat") 88 | }, 89 | new ToolStripMenuItem("Parrot", null, SetRunner) 90 | { 91 | Checked = runner.Equals("parrot") 92 | }, 93 | new ToolStripMenuItem("Horse", null, SetRunner) 94 | { 95 | Checked = runner.Equals("horse") 96 | }, 97 | new ToolStripMenuItem("JapaneseApology", null, SetRunner) 98 | { 99 | Checked = runner.Equals("japaneseapology") 100 | } 101 | }); 102 | 103 | themeMenu = new ToolStripMenuItem("Theme", null, new ToolStripMenuItem[] 104 | { 105 | new ToolStripMenuItem("Default", null, SetThemeIcons) 106 | { 107 | Checked = manualTheme.Equals("") 108 | }, 109 | new ToolStripMenuItem("Light", null, SetLightIcons) 110 | { 111 | Checked = manualTheme.Equals("light") 112 | }, 113 | new ToolStripMenuItem("Dark", null, SetDarkIcons) 114 | { 115 | Checked = manualTheme.Equals("dark") 116 | } 117 | }); 118 | 119 | startupMenu = new ToolStripMenuItem("Startup", null, SetStartup); 120 | if (IsStartupEnabled()) 121 | { 122 | startupMenu.Checked = true; 123 | } 124 | 125 | runnerSpeedLimit = new ToolStripMenuItem("Runner Speed Limit", null, new ToolStripMenuItem[] 126 | { 127 | new ToolStripMenuItem("Default", null, SetSpeedLimit) 128 | { 129 | Checked = speed.Equals("default") 130 | }, 131 | new ToolStripMenuItem("CPU 10%", null, SetSpeedLimit) 132 | { 133 | Checked = speed.Equals("cpu 10%") 134 | }, 135 | new ToolStripMenuItem("CPU 20%", null, SetSpeedLimit) 136 | { 137 | Checked = speed.Equals("cpu 20%") 138 | }, 139 | new ToolStripMenuItem("CPU 30%", null, SetSpeedLimit) 140 | { 141 | Checked = speed.Equals("cpu 30%") 142 | }, 143 | new ToolStripMenuItem("CPU 40%", null, SetSpeedLimit) 144 | { 145 | Checked = speed.Equals("cpu 40%") 146 | } 147 | }); 148 | 149 | ContextMenuStrip contextMenuStrip = new ContextMenuStrip(new Container()); 150 | contextMenuStrip.Items.AddRange(new ToolStripItem[] 151 | { 152 | runnerMenu, 153 | themeMenu, 154 | startupMenu, 155 | runnerSpeedLimit, 156 | new ToolStripSeparator(), 157 | new ToolStripMenuItem($"{Application.ProductName} v{Application.ProductVersion}") 158 | { 159 | Enabled = false 160 | }, 161 | new ToolStripMenuItem("Exit", null, Exit) 162 | }); 163 | 164 | notifyIcon = new NotifyIcon() 165 | { 166 | Icon = Resources.light_cat_0, 167 | ContextMenuStrip = contextMenuStrip, 168 | Text = "0.0%", 169 | Visible = true 170 | }; 171 | 172 | notifyIcon.DoubleClick += new EventHandler(HandleDoubleClick); 173 | 174 | UpdateThemeIcons(); 175 | SetAnimation(); 176 | SetSpeed(); 177 | StartObserveCPU(); 178 | 179 | current = 1; 180 | } 181 | private void OnApplicationExit(object sender, EventArgs e) 182 | { 183 | UserSettings.Default.Runner = runner; 184 | UserSettings.Default.Theme = manualTheme; 185 | UserSettings.Default.Speed = speed; 186 | UserSettings.Default.Save(); 187 | } 188 | 189 | private bool IsStartupEnabled() 190 | { 191 | string keyName = @"Software\Microsoft\Windows\CurrentVersion\Run"; 192 | using (RegistryKey rKey = Registry.CurrentUser.OpenSubKey(keyName)) 193 | { 194 | return (rKey.GetValue(Application.ProductName) != null) ? true : false; 195 | } 196 | } 197 | 198 | private string GetAppsUseTheme() 199 | { 200 | string keyName = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize"; 201 | using (RegistryKey rKey = Registry.CurrentUser.OpenSubKey(keyName)) 202 | { 203 | object value; 204 | if (rKey == null || (value = rKey.GetValue("SystemUsesLightTheme")) == null) 205 | { 206 | Console.WriteLine("Oh No! Couldn't get theme light/dark"); 207 | return "light"; 208 | } 209 | int theme = (int)value; 210 | return theme == 0 ? "dark" : "light"; 211 | } 212 | } 213 | 214 | private void SetIcons() 215 | { 216 | string prefix = 0 < manualTheme.Length ? manualTheme : systemTheme; 217 | ResourceManager rm = Resources.ResourceManager; 218 | // default runner is cat 219 | int capacity = 5; 220 | if (runner.Equals("parrot")) 221 | { 222 | capacity = 10; 223 | } 224 | else if (runner.Equals("horse")) 225 | { 226 | capacity = 14; 227 | } 228 | else if (runner.Equals("japaneseapology")) 229 | { 230 | capacity = 17; 231 | } 232 | List list = new List(capacity); 233 | for (int i = 0; i < capacity; i++) 234 | { 235 | list.Add((Icon)rm.GetObject($"{prefix}_{runner}_{i}")); 236 | } 237 | icons = list.ToArray(); 238 | } 239 | 240 | private void UpdateCheckedState(ToolStripMenuItem sender, ToolStripMenuItem menu) 241 | { 242 | foreach (ToolStripMenuItem item in menu.DropDownItems) 243 | { 244 | item.Checked = false; 245 | } 246 | sender.Checked = true; 247 | } 248 | 249 | private void SetRunner(object sender, EventArgs e) 250 | { 251 | ToolStripMenuItem item = (ToolStripMenuItem)sender; 252 | UpdateCheckedState(item, runnerMenu); 253 | runner = item.Text.ToLower(); 254 | SetIcons(); 255 | } 256 | 257 | private void SetThemeIcons(object sender, EventArgs e) 258 | { 259 | UpdateCheckedState((ToolStripMenuItem)sender, themeMenu); 260 | manualTheme = ""; 261 | systemTheme = GetAppsUseTheme(); 262 | SetIcons(); 263 | } 264 | 265 | private void SetSpeed() 266 | { 267 | if (speed.Equals("default")) 268 | return; 269 | else if (speed.Equals("cpu 10%")) 270 | minCPU = 100f; 271 | else if (speed.Equals("cpu 20%")) 272 | minCPU = 50f; 273 | else if (speed.Equals("cpu 30%")) 274 | minCPU = 33f; 275 | else if (speed.Equals("cpu 40%")) 276 | minCPU = 25f; 277 | } 278 | 279 | private void SetSpeedLimit(object sender, EventArgs e) 280 | { 281 | ToolStripMenuItem item = (ToolStripMenuItem)sender; 282 | UpdateCheckedState(item, runnerSpeedLimit); 283 | speed = item.Text.ToLower(); 284 | SetSpeed(); 285 | } 286 | 287 | private void UpdateThemeIcons() 288 | { 289 | if (0 < manualTheme.Length) 290 | { 291 | SetIcons(); 292 | return; 293 | } 294 | string newTheme = GetAppsUseTheme(); 295 | if (systemTheme.Equals(newTheme)) return; 296 | systemTheme = newTheme; 297 | SetIcons(); 298 | } 299 | 300 | private void SetLightIcons(object sender, EventArgs e) 301 | { 302 | UpdateCheckedState((ToolStripMenuItem)sender, themeMenu); 303 | manualTheme = "light"; 304 | SetIcons(); 305 | } 306 | 307 | private void SetDarkIcons(object sender, EventArgs e) 308 | { 309 | UpdateCheckedState((ToolStripMenuItem)sender, themeMenu); 310 | manualTheme = "dark"; 311 | SetIcons(); 312 | } 313 | private void UserPreferenceChanged(object sender, UserPreferenceChangedEventArgs e) 314 | { 315 | if (e.Category == UserPreferenceCategory.General) UpdateThemeIcons(); 316 | } 317 | 318 | private void SetStartup(object sender, EventArgs e) 319 | { 320 | startupMenu.Checked = !startupMenu.Checked; 321 | string keyName = @"Software\Microsoft\Windows\CurrentVersion\Run"; 322 | using (RegistryKey rKey = Registry.CurrentUser.OpenSubKey(keyName, true)) 323 | { 324 | if (startupMenu.Checked) 325 | { 326 | rKey.SetValue(Application.ProductName, Process.GetCurrentProcess().MainModule.FileName); 327 | } 328 | else 329 | { 330 | rKey.DeleteValue(Application.ProductName, false); 331 | } 332 | rKey.Close(); 333 | } 334 | } 335 | 336 | private void Exit(object sender, EventArgs e) 337 | { 338 | cpuUsage.Close(); 339 | animateTimer.Stop(); 340 | cpuTimer.Stop(); 341 | notifyIcon.Visible = false; 342 | Application.Exit(); 343 | } 344 | 345 | private void AnimationTick(object sender, EventArgs e) 346 | { 347 | if (icons.Length <= current) current = 0; 348 | notifyIcon.Icon = icons[current]; 349 | current = (current + 1) % icons.Length; 350 | } 351 | 352 | private void SetAnimation() 353 | { 354 | animateTimer.Interval = ANIMATE_TIMER_DEFAULT_INTERVAL; 355 | animateTimer.Tick += new EventHandler(AnimationTick); 356 | } 357 | 358 | private void CPUTickSpeed() 359 | { 360 | if (!speed.Equals("default")) 361 | { 362 | float manualInterval = (float)Math.Max(minCPU, interval); 363 | animateTimer.Stop(); 364 | animateTimer.Interval = (int)manualInterval; 365 | animateTimer.Start(); 366 | } 367 | else 368 | { 369 | animateTimer.Stop(); 370 | animateTimer.Interval = (int)interval; 371 | animateTimer.Start(); 372 | } 373 | } 374 | 375 | private void CPUTick() 376 | { 377 | interval = Math.Min(100, cpuUsage.NextValue()); // Sometimes got over 100% so it should be limited to 100% 378 | notifyIcon.Text = $"CPU: {interval:f1}%"; 379 | interval = 200.0f / (float)Math.Max(1.0f, Math.Min(20.0f, interval / 5.0f)); 380 | _ = interval; 381 | CPUTickSpeed(); 382 | } 383 | private void ObserveCPUTick(object sender, EventArgs e) 384 | { 385 | CPUTick(); 386 | } 387 | 388 | private void StartObserveCPU() 389 | { 390 | cpuTimer.Interval = CPU_TIMER_DEFAULT_INTERVAL; 391 | cpuTimer.Tick += new EventHandler(ObserveCPUTick); 392 | cpuTimer.Start(); 393 | } 394 | 395 | private void HandleDoubleClick(object Sender, EventArgs e) 396 | { 397 | var startInfo = new ProcessStartInfo 398 | { 399 | FileName = "powershell", 400 | UseShellExecute = false, 401 | Arguments = " -c Start-Process taskmgr.exe", 402 | CreateNoWindow = true, 403 | }; 404 | Process.Start(startInfo); 405 | } 406 | 407 | } 408 | } 409 | -------------------------------------------------------------------------------- /RunCat/Properties/PublishProfiles/PublishProfile-ARM64.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Release 8 | ARM64 9 | bin\publish-arm64\ 10 | FileSystem 11 | net6.0-windows 12 | win-arm64 13 | false 14 | false 15 | 16 | -------------------------------------------------------------------------------- /RunCat/Properties/PublishProfiles/PublishProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Release 8 | x64 9 | bin\publish\ 10 | FileSystem 11 | net6.0-windows 12 | win-x64 13 | false 14 | false 15 | 16 | -------------------------------------------------------------------------------- /RunCat/Properties/PublishProfiles/PublishProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | True|2022-07-11T04:46:03.9863554Z;True|2022-07-11T12:07:50.9448398+09:00;True|2022-06-11T11:26:36.7615782+09:00;True|2021-11-27T17:05:58.6541052+09:00;True|2021-11-27T17:04:01.5026144+09:00; 8 | 9 | -------------------------------------------------------------------------------- /RunCat/Properties/PublishProfiles/PublishWithDotNetProdile-ARM64.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Release 8 | ARM64 9 | bin\publish-with-dotnet-arm64\ 10 | FileSystem 11 | net6.0-windows 12 | win-arm64 13 | true 14 | true 15 | false 16 | 17 | -------------------------------------------------------------------------------- /RunCat/Properties/PublishProfiles/PublishWithDotNetProdile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Release 8 | x64 9 | bin\publish-with-dotnet\ 10 | FileSystem 11 | net6.0-windows 12 | win-x64 13 | true 14 | true 15 | false 16 | 17 | -------------------------------------------------------------------------------- /RunCat/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // このコードはツールによって生成されました。 4 | // ランタイム バージョン:4.0.30319.42000 5 | // 6 | // このファイルへの変更は、以下の状況下で不正な動作の原因になったり、 7 | // コードが再生成されるときに損失したりします。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace RunCat.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// ローカライズされた文字列などを検索するための、厳密に型指定されたリソース クラスです。 17 | /// 18 | // このクラスは StronglyTypedResourceBuilder クラスが ResGen 19 | // または Visual Studio のようなツールを使用して自動生成されました。 20 | // メンバーを追加または削除するには、.ResX ファイルを編集して、/str オプションと共に 21 | // ResGen を実行し直すか、または VS プロジェクトをビルドし直します。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// このクラスで使用されているキャッシュされた ResourceManager インスタンスを返します。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RunCat.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// すべてについて、現在のスレッドの CurrentUICulture プロパティをオーバーライドします 51 | /// 現在のスレッドの CurrentUICulture プロパティをオーバーライドします。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 65 | /// 66 | internal static System.Drawing.Icon dark_cat_0 { 67 | get { 68 | object obj = ResourceManager.GetObject("dark_cat_0", resourceCulture); 69 | return ((System.Drawing.Icon)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 75 | /// 76 | internal static System.Drawing.Icon dark_cat_1 { 77 | get { 78 | object obj = ResourceManager.GetObject("dark_cat_1", resourceCulture); 79 | return ((System.Drawing.Icon)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 85 | /// 86 | internal static System.Drawing.Icon dark_cat_2 { 87 | get { 88 | object obj = ResourceManager.GetObject("dark_cat_2", resourceCulture); 89 | return ((System.Drawing.Icon)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 95 | /// 96 | internal static System.Drawing.Icon dark_cat_3 { 97 | get { 98 | object obj = ResourceManager.GetObject("dark_cat_3", resourceCulture); 99 | return ((System.Drawing.Icon)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 105 | /// 106 | internal static System.Drawing.Icon dark_cat_4 { 107 | get { 108 | object obj = ResourceManager.GetObject("dark_cat_4", resourceCulture); 109 | return ((System.Drawing.Icon)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 115 | /// 116 | internal static System.Drawing.Icon dark_parrot_0 { 117 | get { 118 | object obj = ResourceManager.GetObject("dark_parrot_0", resourceCulture); 119 | return ((System.Drawing.Icon)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 125 | /// 126 | internal static System.Drawing.Icon dark_parrot_1 { 127 | get { 128 | object obj = ResourceManager.GetObject("dark_parrot_1", resourceCulture); 129 | return ((System.Drawing.Icon)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 135 | /// 136 | internal static System.Drawing.Icon dark_parrot_2 { 137 | get { 138 | object obj = ResourceManager.GetObject("dark_parrot_2", resourceCulture); 139 | return ((System.Drawing.Icon)(obj)); 140 | } 141 | } 142 | 143 | /// 144 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 145 | /// 146 | internal static System.Drawing.Icon dark_parrot_3 { 147 | get { 148 | object obj = ResourceManager.GetObject("dark_parrot_3", resourceCulture); 149 | return ((System.Drawing.Icon)(obj)); 150 | } 151 | } 152 | 153 | /// 154 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 155 | /// 156 | internal static System.Drawing.Icon dark_parrot_4 { 157 | get { 158 | object obj = ResourceManager.GetObject("dark_parrot_4", resourceCulture); 159 | return ((System.Drawing.Icon)(obj)); 160 | } 161 | } 162 | 163 | /// 164 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 165 | /// 166 | internal static System.Drawing.Icon dark_parrot_5 { 167 | get { 168 | object obj = ResourceManager.GetObject("dark_parrot_5", resourceCulture); 169 | return ((System.Drawing.Icon)(obj)); 170 | } 171 | } 172 | 173 | /// 174 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 175 | /// 176 | internal static System.Drawing.Icon dark_parrot_6 { 177 | get { 178 | object obj = ResourceManager.GetObject("dark_parrot_6", resourceCulture); 179 | return ((System.Drawing.Icon)(obj)); 180 | } 181 | } 182 | 183 | /// 184 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 185 | /// 186 | internal static System.Drawing.Icon dark_parrot_7 { 187 | get { 188 | object obj = ResourceManager.GetObject("dark_parrot_7", resourceCulture); 189 | return ((System.Drawing.Icon)(obj)); 190 | } 191 | } 192 | 193 | /// 194 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 195 | /// 196 | internal static System.Drawing.Icon dark_parrot_8 { 197 | get { 198 | object obj = ResourceManager.GetObject("dark_parrot_8", resourceCulture); 199 | return ((System.Drawing.Icon)(obj)); 200 | } 201 | } 202 | 203 | /// 204 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 205 | /// 206 | internal static System.Drawing.Icon dark_parrot_9 { 207 | get { 208 | object obj = ResourceManager.GetObject("dark_parrot_9", resourceCulture); 209 | return ((System.Drawing.Icon)(obj)); 210 | } 211 | } 212 | 213 | /// 214 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 215 | /// 216 | internal static System.Drawing.Icon light_cat_0 { 217 | get { 218 | object obj = ResourceManager.GetObject("light_cat_0", resourceCulture); 219 | return ((System.Drawing.Icon)(obj)); 220 | } 221 | } 222 | 223 | /// 224 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 225 | /// 226 | internal static System.Drawing.Icon light_cat_1 { 227 | get { 228 | object obj = ResourceManager.GetObject("light_cat_1", resourceCulture); 229 | return ((System.Drawing.Icon)(obj)); 230 | } 231 | } 232 | 233 | /// 234 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 235 | /// 236 | internal static System.Drawing.Icon light_cat_2 { 237 | get { 238 | object obj = ResourceManager.GetObject("light_cat_2", resourceCulture); 239 | return ((System.Drawing.Icon)(obj)); 240 | } 241 | } 242 | 243 | /// 244 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 245 | /// 246 | internal static System.Drawing.Icon light_cat_3 { 247 | get { 248 | object obj = ResourceManager.GetObject("light_cat_3", resourceCulture); 249 | return ((System.Drawing.Icon)(obj)); 250 | } 251 | } 252 | 253 | /// 254 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 255 | /// 256 | internal static System.Drawing.Icon light_cat_4 { 257 | get { 258 | object obj = ResourceManager.GetObject("light_cat_4", resourceCulture); 259 | return ((System.Drawing.Icon)(obj)); 260 | } 261 | } 262 | 263 | /// 264 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 265 | /// 266 | internal static System.Drawing.Icon light_parrot_0 { 267 | get { 268 | object obj = ResourceManager.GetObject("light_parrot_0", resourceCulture); 269 | return ((System.Drawing.Icon)(obj)); 270 | } 271 | } 272 | 273 | /// 274 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 275 | /// 276 | internal static System.Drawing.Icon light_parrot_1 { 277 | get { 278 | object obj = ResourceManager.GetObject("light_parrot_1", resourceCulture); 279 | return ((System.Drawing.Icon)(obj)); 280 | } 281 | } 282 | 283 | /// 284 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 285 | /// 286 | internal static System.Drawing.Icon light_parrot_2 { 287 | get { 288 | object obj = ResourceManager.GetObject("light_parrot_2", resourceCulture); 289 | return ((System.Drawing.Icon)(obj)); 290 | } 291 | } 292 | 293 | /// 294 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 295 | /// 296 | internal static System.Drawing.Icon light_parrot_3 { 297 | get { 298 | object obj = ResourceManager.GetObject("light_parrot_3", resourceCulture); 299 | return ((System.Drawing.Icon)(obj)); 300 | } 301 | } 302 | 303 | /// 304 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 305 | /// 306 | internal static System.Drawing.Icon light_parrot_4 { 307 | get { 308 | object obj = ResourceManager.GetObject("light_parrot_4", resourceCulture); 309 | return ((System.Drawing.Icon)(obj)); 310 | } 311 | } 312 | 313 | /// 314 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 315 | /// 316 | internal static System.Drawing.Icon light_parrot_5 { 317 | get { 318 | object obj = ResourceManager.GetObject("light_parrot_5", resourceCulture); 319 | return ((System.Drawing.Icon)(obj)); 320 | } 321 | } 322 | 323 | /// 324 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 325 | /// 326 | internal static System.Drawing.Icon light_parrot_6 { 327 | get { 328 | object obj = ResourceManager.GetObject("light_parrot_6", resourceCulture); 329 | return ((System.Drawing.Icon)(obj)); 330 | } 331 | } 332 | 333 | /// 334 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 335 | /// 336 | internal static System.Drawing.Icon light_parrot_7 { 337 | get { 338 | object obj = ResourceManager.GetObject("light_parrot_7", resourceCulture); 339 | return ((System.Drawing.Icon)(obj)); 340 | } 341 | } 342 | 343 | /// 344 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 345 | /// 346 | internal static System.Drawing.Icon light_parrot_8 { 347 | get { 348 | object obj = ResourceManager.GetObject("light_parrot_8", resourceCulture); 349 | return ((System.Drawing.Icon)(obj)); 350 | } 351 | } 352 | 353 | /// 354 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 355 | /// 356 | internal static System.Drawing.Icon light_parrot_9 { 357 | get { 358 | object obj = ResourceManager.GetObject("light_parrot_9", resourceCulture); 359 | return ((System.Drawing.Icon)(obj)); 360 | } 361 | } 362 | /// 363 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 364 | /// 365 | internal static System.Drawing.Icon dark_horse_0 { 366 | get { 367 | object obj = ResourceManager.GetObject("dark_horse_0", resourceCulture); 368 | return ((System.Drawing.Icon)(obj)); 369 | } 370 | } 371 | /// 372 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 373 | /// 374 | internal static System.Drawing.Icon dark_horse_1 { 375 | get { 376 | object obj = ResourceManager.GetObject("dark_horse_1", resourceCulture); 377 | return ((System.Drawing.Icon)(obj)); 378 | } 379 | } 380 | /// 381 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 382 | /// 383 | internal static System.Drawing.Icon dark_horse_2 { 384 | get { 385 | object obj = ResourceManager.GetObject("dark_horse_2", resourceCulture); 386 | return ((System.Drawing.Icon)(obj)); 387 | } 388 | } 389 | /// 390 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 391 | /// 392 | internal static System.Drawing.Icon dark_horse_3 { 393 | get { 394 | object obj = ResourceManager.GetObject("dark_horse_3", resourceCulture); 395 | return ((System.Drawing.Icon)(obj)); 396 | } 397 | } 398 | /// 399 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 400 | /// 401 | internal static System.Drawing.Icon dark_horse_4 { 402 | get { 403 | object obj = ResourceManager.GetObject("dark_horse_4", resourceCulture); 404 | return ((System.Drawing.Icon)(obj)); 405 | } 406 | } 407 | /// 408 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 409 | /// 410 | internal static System.Drawing.Icon dark_horse_5 { 411 | get { 412 | object obj = ResourceManager.GetObject("dark_horse_5", resourceCulture); 413 | return ((System.Drawing.Icon)(obj)); 414 | } 415 | } 416 | /// 417 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 418 | /// 419 | internal static System.Drawing.Icon dark_horse_6 { 420 | get { 421 | object obj = ResourceManager.GetObject("dark_horse_6", resourceCulture); 422 | return ((System.Drawing.Icon)(obj)); 423 | } 424 | } 425 | /// 426 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 427 | /// 428 | internal static System.Drawing.Icon dark_horse_7 { 429 | get { 430 | object obj = ResourceManager.GetObject("dark_horse_7", resourceCulture); 431 | return ((System.Drawing.Icon)(obj)); 432 | } 433 | } 434 | /// 435 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 436 | /// 437 | internal static System.Drawing.Icon dark_horse_8 { 438 | get { 439 | object obj = ResourceManager.GetObject("dark_horse_8", resourceCulture); 440 | return ((System.Drawing.Icon)(obj)); 441 | } 442 | } 443 | /// 444 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 445 | /// 446 | internal static System.Drawing.Icon dark_horse_9 { 447 | get { 448 | object obj = ResourceManager.GetObject("dark_horse_9", resourceCulture); 449 | return ((System.Drawing.Icon)(obj)); 450 | } 451 | } 452 | /// 453 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 454 | /// 455 | internal static System.Drawing.Icon dark_horse_10 { 456 | get { 457 | object obj = ResourceManager.GetObject("dark_horse_10", resourceCulture); 458 | return ((System.Drawing.Icon)(obj)); 459 | } 460 | } 461 | /// 462 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 463 | /// 464 | internal static System.Drawing.Icon dark_horse_11 { 465 | get { 466 | object obj = ResourceManager.GetObject("dark_horse_11", resourceCulture); 467 | return ((System.Drawing.Icon)(obj)); 468 | } 469 | } 470 | /// 471 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 472 | /// 473 | internal static System.Drawing.Icon dark_horse_12 { 474 | get { 475 | object obj = ResourceManager.GetObject("dark_horse_12", resourceCulture); 476 | return ((System.Drawing.Icon)(obj)); 477 | } 478 | } 479 | /// 480 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 481 | /// 482 | internal static System.Drawing.Icon dark_horse_13 { 483 | get { 484 | object obj = ResourceManager.GetObject("dark_horse_13", resourceCulture); 485 | return ((System.Drawing.Icon)(obj)); 486 | } 487 | } 488 | /// 489 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 490 | /// 491 | internal static System.Drawing.Icon light_horse_0 { 492 | get { 493 | object obj = ResourceManager.GetObject("light_horse_0", resourceCulture); 494 | return ((System.Drawing.Icon)(obj)); 495 | } 496 | } 497 | /// 498 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 499 | /// 500 | internal static System.Drawing.Icon light_horse_1 { 501 | get { 502 | object obj = ResourceManager.GetObject("light_horse_1", resourceCulture); 503 | return ((System.Drawing.Icon)(obj)); 504 | } 505 | } 506 | /// 507 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 508 | /// 509 | internal static System.Drawing.Icon light_horse_2 { 510 | get { 511 | object obj = ResourceManager.GetObject("light_horse_2", resourceCulture); 512 | return ((System.Drawing.Icon)(obj)); 513 | } 514 | } 515 | /// 516 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 517 | /// 518 | internal static System.Drawing.Icon light_horse_3 { 519 | get { 520 | object obj = ResourceManager.GetObject("light_horse_3", resourceCulture); 521 | return ((System.Drawing.Icon)(obj)); 522 | } 523 | } 524 | /// 525 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 526 | /// 527 | internal static System.Drawing.Icon light_horse_4 { 528 | get { 529 | object obj = ResourceManager.GetObject("light_horse_4", resourceCulture); 530 | return ((System.Drawing.Icon)(obj)); 531 | } 532 | } 533 | /// 534 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 535 | /// 536 | internal static System.Drawing.Icon light_horse_5 { 537 | get { 538 | object obj = ResourceManager.GetObject("light_horse_5", resourceCulture); 539 | return ((System.Drawing.Icon)(obj)); 540 | } 541 | } 542 | /// 543 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 544 | /// 545 | internal static System.Drawing.Icon light_horse_6 { 546 | get { 547 | object obj = ResourceManager.GetObject("light_horse_6", resourceCulture); 548 | return ((System.Drawing.Icon)(obj)); 549 | } 550 | } 551 | /// 552 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 553 | /// 554 | internal static System.Drawing.Icon light_horse_7 { 555 | get { 556 | object obj = ResourceManager.GetObject("light_horse_7", resourceCulture); 557 | return ((System.Drawing.Icon)(obj)); 558 | } 559 | } 560 | /// 561 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 562 | /// 563 | internal static System.Drawing.Icon light_horse_8 { 564 | get { 565 | object obj = ResourceManager.GetObject("light_horse_8", resourceCulture); 566 | return ((System.Drawing.Icon)(obj)); 567 | } 568 | } 569 | /// 570 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 571 | /// 572 | internal static System.Drawing.Icon light_horse_9 { 573 | get { 574 | object obj = ResourceManager.GetObject("light_horse_9", resourceCulture); 575 | return ((System.Drawing.Icon)(obj)); 576 | } 577 | } 578 | /// 579 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 580 | /// 581 | internal static System.Drawing.Icon light_horse_10 { 582 | get { 583 | object obj = ResourceManager.GetObject("light_horse_10", resourceCulture); 584 | return ((System.Drawing.Icon)(obj)); 585 | } 586 | } 587 | /// 588 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 589 | /// 590 | internal static System.Drawing.Icon light_horse_11 { 591 | get { 592 | object obj = ResourceManager.GetObject("light_horse_11", resourceCulture); 593 | return ((System.Drawing.Icon)(obj)); 594 | } 595 | } 596 | /// 597 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 598 | /// 599 | internal static System.Drawing.Icon light_horse_12 { 600 | get { 601 | object obj = ResourceManager.GetObject("light_horse_12", resourceCulture); 602 | return ((System.Drawing.Icon)(obj)); 603 | } 604 | } 605 | /// 606 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 607 | /// 608 | internal static System.Drawing.Icon light_horse_13 { 609 | get { 610 | object obj = ResourceManager.GetObject("light_horse_13", resourceCulture); 611 | return ((System.Drawing.Icon)(obj)); 612 | } 613 | } 614 | /// 615 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 616 | /// 617 | internal static System.Drawing.Icon dark_japaneseapology_0 { 618 | get { 619 | object obj = ResourceManager.GetObject("dark_japaneseapology_0", resourceCulture); 620 | return ((System.Drawing.Icon)(obj)); 621 | } 622 | } 623 | /// 624 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 625 | /// 626 | internal static System.Drawing.Icon dark_japaneseapology_1 { 627 | get { 628 | object obj = ResourceManager.GetObject("dark_japaneseapology_1", resourceCulture); 629 | return ((System.Drawing.Icon)(obj)); 630 | } 631 | } 632 | /// 633 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 634 | /// 635 | internal static System.Drawing.Icon dark_japaneseapology_2 { 636 | get { 637 | object obj = ResourceManager.GetObject("dark_japaneseapology_2", resourceCulture); 638 | return ((System.Drawing.Icon)(obj)); 639 | } 640 | } 641 | /// 642 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 643 | /// 644 | internal static System.Drawing.Icon dark_japaneseapology_3 { 645 | get { 646 | object obj = ResourceManager.GetObject("dark_japaneseapology_3", resourceCulture); 647 | return ((System.Drawing.Icon)(obj)); 648 | } 649 | } 650 | /// 651 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 652 | /// 653 | internal static System.Drawing.Icon dark_japaneseapology_4 { 654 | get { 655 | object obj = ResourceManager.GetObject("dark_japaneseapology_4", resourceCulture); 656 | return ((System.Drawing.Icon)(obj)); 657 | } 658 | } 659 | /// 660 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 661 | /// 662 | internal static System.Drawing.Icon dark_japaneseapology_5 { 663 | get { 664 | object obj = ResourceManager.GetObject("dark_japaneseapology_5", resourceCulture); 665 | return ((System.Drawing.Icon)(obj)); 666 | } 667 | } 668 | /// 669 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 670 | /// 671 | internal static System.Drawing.Icon dark_japaneseapology_6 { 672 | get { 673 | object obj = ResourceManager.GetObject("dark_japaneseapology_6", resourceCulture); 674 | return ((System.Drawing.Icon)(obj)); 675 | } 676 | } 677 | /// 678 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 679 | /// 680 | internal static System.Drawing.Icon dark_japaneseapology_7 { 681 | get { 682 | object obj = ResourceManager.GetObject("dark_japaneseapology_7", resourceCulture); 683 | return ((System.Drawing.Icon)(obj)); 684 | } 685 | } 686 | /// 687 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 688 | /// 689 | internal static System.Drawing.Icon dark_japaneseapology_8 { 690 | get { 691 | object obj = ResourceManager.GetObject("dark_japaneseapology_8", resourceCulture); 692 | return ((System.Drawing.Icon)(obj)); 693 | } 694 | } 695 | /// 696 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 697 | /// 698 | internal static System.Drawing.Icon dark_japaneseapology_9 { 699 | get { 700 | object obj = ResourceManager.GetObject("dark_japaneseapology_9", resourceCulture); 701 | return ((System.Drawing.Icon)(obj)); 702 | } 703 | } 704 | /// 705 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 706 | /// 707 | internal static System.Drawing.Icon dark_japaneseapology_10 { 708 | get { 709 | object obj = ResourceManager.GetObject("dark_japaneseapology_10", resourceCulture); 710 | return ((System.Drawing.Icon)(obj)); 711 | } 712 | } 713 | /// 714 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 715 | /// 716 | internal static System.Drawing.Icon dark_japaneseapology_11 { 717 | get { 718 | object obj = ResourceManager.GetObject("dark_japaneseapology_11", resourceCulture); 719 | return ((System.Drawing.Icon)(obj)); 720 | } 721 | } 722 | /// 723 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 724 | /// 725 | internal static System.Drawing.Icon dark_japaneseapology_12 { 726 | get { 727 | object obj = ResourceManager.GetObject("dark_japaneseapology_12", resourceCulture); 728 | return ((System.Drawing.Icon)(obj)); 729 | } 730 | } 731 | /// 732 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 733 | /// 734 | internal static System.Drawing.Icon dark_japaneseapology_13 { 735 | get { 736 | object obj = ResourceManager.GetObject("dark_japaneseapology_13", resourceCulture); 737 | return ((System.Drawing.Icon)(obj)); 738 | } 739 | } 740 | /// 741 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 742 | /// 743 | internal static System.Drawing.Icon dark_japaneseapology_14 { 744 | get { 745 | object obj = ResourceManager.GetObject("dark_japaneseapology_14", resourceCulture); 746 | return ((System.Drawing.Icon)(obj)); 747 | } 748 | } 749 | /// 750 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 751 | /// 752 | internal static System.Drawing.Icon light_japaneseapology_0 { 753 | get { 754 | object obj = ResourceManager.GetObject("light_japaneseapology_0", resourceCulture); 755 | return ((System.Drawing.Icon)(obj)); 756 | } 757 | } 758 | /// 759 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 760 | /// 761 | internal static System.Drawing.Icon light_japaneseapology_1 { 762 | get { 763 | object obj = ResourceManager.GetObject("light_japaneseapology_1", resourceCulture); 764 | return ((System.Drawing.Icon)(obj)); 765 | } 766 | } 767 | /// 768 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 769 | /// 770 | internal static System.Drawing.Icon light_japaneseapology_2 { 771 | get { 772 | object obj = ResourceManager.GetObject("light_japaneseapology_2", resourceCulture); 773 | return ((System.Drawing.Icon)(obj)); 774 | } 775 | } 776 | /// 777 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 778 | /// 779 | internal static System.Drawing.Icon light_japaneseapology_3 { 780 | get { 781 | object obj = ResourceManager.GetObject("light_japaneseapology_3", resourceCulture); 782 | return ((System.Drawing.Icon)(obj)); 783 | } 784 | } 785 | /// 786 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 787 | /// 788 | internal static System.Drawing.Icon light_japaneseapology_4 { 789 | get { 790 | object obj = ResourceManager.GetObject("light_japaneseapology_4", resourceCulture); 791 | return ((System.Drawing.Icon)(obj)); 792 | } 793 | } 794 | /// 795 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 796 | /// 797 | internal static System.Drawing.Icon light_japaneseapology_5 { 798 | get { 799 | object obj = ResourceManager.GetObject("light_japaneseapology_5", resourceCulture); 800 | return ((System.Drawing.Icon)(obj)); 801 | } 802 | } 803 | /// 804 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 805 | /// 806 | internal static System.Drawing.Icon light_japaneseapology_6 { 807 | get { 808 | object obj = ResourceManager.GetObject("light_japaneseapology_6", resourceCulture); 809 | return ((System.Drawing.Icon)(obj)); 810 | } 811 | } 812 | /// 813 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 814 | /// 815 | internal static System.Drawing.Icon light_japaneseapology_7 { 816 | get { 817 | object obj = ResourceManager.GetObject("light_japaneseapology_7", resourceCulture); 818 | return ((System.Drawing.Icon)(obj)); 819 | } 820 | } 821 | /// 822 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 823 | /// 824 | internal static System.Drawing.Icon light_japaneseapology_8 { 825 | get { 826 | object obj = ResourceManager.GetObject("light_japaneseapology_8", resourceCulture); 827 | return ((System.Drawing.Icon)(obj)); 828 | } 829 | } 830 | /// 831 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 832 | /// 833 | internal static System.Drawing.Icon light_japaneseapology_9 { 834 | get { 835 | object obj = ResourceManager.GetObject("light_japaneseapology_9", resourceCulture); 836 | return ((System.Drawing.Icon)(obj)); 837 | } 838 | } 839 | /// 840 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 841 | /// 842 | internal static System.Drawing.Icon light_japaneseapology_10 { 843 | get { 844 | object obj = ResourceManager.GetObject("light_japaneseapology_10", resourceCulture); 845 | return ((System.Drawing.Icon)(obj)); 846 | } 847 | } 848 | /// 849 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 850 | /// 851 | internal static System.Drawing.Icon light_japaneseapology_11 { 852 | get { 853 | object obj = ResourceManager.GetObject("light_japaneseapology_11", resourceCulture); 854 | return ((System.Drawing.Icon)(obj)); 855 | } 856 | } 857 | /// 858 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 859 | /// 860 | internal static System.Drawing.Icon light_japaneseapology_12 { 861 | get { 862 | object obj = ResourceManager.GetObject("light_japaneseapology_12", resourceCulture); 863 | return ((System.Drawing.Icon)(obj)); 864 | } 865 | } 866 | /// 867 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 868 | /// 869 | internal static System.Drawing.Icon light_japaneseapology_13 { 870 | get { 871 | object obj = ResourceManager.GetObject("light_japaneseapology_13", resourceCulture); 872 | return ((System.Drawing.Icon)(obj)); 873 | } 874 | } 875 | /// 876 | /// (アイコン) に類似した型 System.Drawing.Icon のローカライズされたリソースを検索します。 877 | /// 878 | internal static System.Drawing.Icon light_japaneseapology_14 { 879 | get { 880 | object obj = ResourceManager.GetObject("light_japaneseapology_14", resourceCulture); 881 | return ((System.Drawing.Icon)(obj)); 882 | } 883 | } 884 | } 885 | } 886 | -------------------------------------------------------------------------------- /RunCat/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\resources\cat\dark_cat_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\resources\cat\dark_cat_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\resources\cat\dark_cat_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\resources\cat\dark_cat_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\resources\cat\dark_cat_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\resources\parrot\dark_parrot_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\resources\parrot\dark_parrot_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\resources\parrot\dark_parrot_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | ..\resources\parrot\dark_parrot_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 147 | 148 | 149 | ..\resources\parrot\dark_parrot_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 150 | 151 | 152 | ..\resources\parrot\dark_parrot_5.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 153 | 154 | 155 | ..\resources\parrot\dark_parrot_6.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 156 | 157 | 158 | ..\resources\parrot\dark_parrot_7.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 159 | 160 | 161 | ..\resources\parrot\dark_parrot_8.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 162 | 163 | 164 | ..\resources\parrot\dark_parrot_9.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 165 | 166 | 167 | ..\resources\horse\dark_horse_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 168 | 169 | 170 | ..\resources\horse\dark_horse_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 171 | 172 | 173 | ..\resources\horse\dark_horse_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 174 | 175 | 176 | ..\resources\horse\dark_horse_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 177 | 178 | 179 | ..\resources\horse\dark_horse_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 180 | 181 | 182 | ..\resources\horse\dark_horse_5.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 183 | 184 | 185 | ..\resources\horse\dark_horse_6.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 186 | 187 | 188 | ..\resources\horse\dark_horse_7.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 189 | 190 | 191 | ..\resources\horse\dark_horse_8.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 192 | 193 | 194 | ..\resources\horse\dark_horse_9.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 195 | 196 | 197 | ..\resources\horse\dark_horse_10.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 198 | 199 | 200 | ..\resources\horse\dark_horse_11.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 201 | 202 | 203 | ..\resources\horse\dark_horse_12.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 204 | 205 | 206 | ..\resources\horse\dark_horse_13.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 207 | 208 | 209 | ..\resources\japaneseapology\dark_japaneseapology_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 210 | 211 | 212 | ..\resources\japaneseapology\dark_japaneseapology_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 213 | 214 | 215 | ..\resources\japaneseapology\dark_japaneseapology_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 216 | 217 | 218 | ..\resources\japaneseapology\dark_japaneseapology_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 219 | 220 | 221 | ..\resources\japaneseapology\dark_japaneseapology_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 222 | 223 | 224 | ..\resources\japaneseapology\dark_japaneseapology_5.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 225 | 226 | 227 | ..\resources\japaneseapology\dark_japaneseapology_6.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 228 | 229 | 230 | ..\resources\japaneseapology\dark_japaneseapology_7.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 231 | 232 | 233 | ..\resources\japaneseapology\dark_japaneseapology_8.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 234 | 235 | 236 | ..\resources\japaneseapology\dark_japaneseapology_9.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 237 | 238 | 239 | ..\resources\japaneseapology\dark_japaneseapology_10.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 240 | 241 | 242 | ..\resources\japaneseapology\dark_japaneseapology_11.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 243 | 244 | 245 | ..\resources\japaneseapology\dark_japaneseapology_12.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 246 | 247 | 248 | ..\resources\japaneseapology\dark_japaneseapology_13.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 249 | 250 | 251 | ..\resources\japaneseapology\dark_japaneseapology_14.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 252 | 253 | 254 | ..\resources\japaneseapology\dark_japaneseapology_15.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 255 | 256 | 257 | ..\resources\japaneseapology\dark_japaneseapology_16.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 258 | 259 | 260 | ..\resources\cat\light_cat_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 261 | 262 | 263 | ..\resources\cat\light_cat_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 264 | 265 | 266 | ..\resources\cat\light_cat_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 267 | 268 | 269 | ..\resources\cat\light_cat_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 270 | 271 | 272 | ..\resources\cat\light_cat_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 273 | 274 | 275 | ..\resources\parrot\light_parrot_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 276 | 277 | 278 | ..\resources\parrot\light_parrot_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 279 | 280 | 281 | ..\resources\parrot\light_parrot_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 282 | 283 | 284 | ..\resources\parrot\light_parrot_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 285 | 286 | 287 | ..\resources\parrot\light_parrot_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 288 | 289 | 290 | ..\resources\parrot\light_parrot_5.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 291 | 292 | 293 | ..\resources\parrot\light_parrot_6.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 294 | 295 | 296 | ..\resources\parrot\light_parrot_7.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 297 | 298 | 299 | ..\resources\parrot\light_parrot_8.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 300 | 301 | 302 | ..\resources\parrot\light_parrot_9.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 303 | 304 | 305 | ..\resources\horse\light_horse_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 306 | 307 | 308 | ..\resources\horse\light_horse_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 309 | 310 | 311 | ..\resources\horse\light_horse_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 312 | 313 | 314 | ..\resources\horse\light_horse_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 315 | 316 | 317 | ..\resources\horse\light_horse_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 318 | 319 | 320 | ..\resources\horse\light_horse_5.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 321 | 322 | 323 | ..\resources\horse\light_horse_6.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 324 | 325 | 326 | ..\resources\horse\light_horse_7.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 327 | 328 | 329 | ..\resources\horse\light_horse_8.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 330 | 331 | 332 | ..\resources\horse\light_horse_9.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 333 | 334 | 335 | ..\resources\horse\light_horse_10.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 336 | 337 | 338 | ..\resources\horse\light_horse_11.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 339 | 340 | 341 | ..\resources\horse\light_horse_12.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 342 | 343 | 344 | ..\resources\horse\light_horse_13.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 345 | 346 | 347 | ..\resources\japaneseapology\light_japaneseapology_0.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 348 | 349 | 350 | ..\resources\japaneseapology\light_japaneseapology_1.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 351 | 352 | 353 | ..\resources\japaneseapology\light_japaneseapology_2.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 354 | 355 | 356 | ..\resources\japaneseapology\light_japaneseapology_3.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 357 | 358 | 359 | ..\resources\japaneseapology\light_japaneseapology_4.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 360 | 361 | 362 | ..\resources\japaneseapology\light_japaneseapology_5.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 363 | 364 | 365 | ..\resources\japaneseapology\light_japaneseapology_6.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 366 | 367 | 368 | ..\resources\japaneseapology\light_japaneseapology_7.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 369 | 370 | 371 | ..\resources\japaneseapology\light_japaneseapology_8.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 372 | 373 | 374 | ..\resources\japaneseapology\light_japaneseapology_9.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 375 | 376 | 377 | ..\resources\japaneseapology\light_japaneseapology_10.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 378 | 379 | 380 | ..\resources\japaneseapology\light_japaneseapology_11.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 381 | 382 | 383 | ..\resources\japaneseapology\light_japaneseapology_12.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 384 | 385 | 386 | ..\resources\japaneseapology\light_japaneseapology_13.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 387 | 388 | 389 | ..\resources\japaneseapology\light_japaneseapology_14.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 390 | 391 | 392 | ..\resources\japaneseapology\light_japaneseapology_15.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 393 | 394 | 395 | ..\resources\japaneseapology\light_japaneseapology_16.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 396 | 397 | -------------------------------------------------------------------------------- /RunCat/Properties/UserSettings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // このコードはツールによって生成されました。 4 | // ランタイム バージョン:4.0.30319.42000 5 | // 6 | // このファイルへの変更は、以下の状況下で不正な動作の原因になったり、 7 | // コードが再生成されるときに損失したりします。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace RunCat.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.6.0.0")] 16 | internal sealed partial class UserSettings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static UserSettings defaultInstance = ((UserSettings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new UserSettings()))); 19 | 20 | public static UserSettings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("cat")] 29 | public string Runner { 30 | get { 31 | return ((string)(this["Runner"])); 32 | } 33 | set { 34 | this["Runner"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute("")] 41 | public string Theme { 42 | get { 43 | return ((string)(this["Theme"])); 44 | } 45 | set { 46 | this["Theme"] = value; 47 | } 48 | } 49 | 50 | [global::System.Configuration.UserScopedSettingAttribute()] 51 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 | [global::System.Configuration.DefaultSettingValueAttribute("default")] 53 | public string Speed 54 | { 55 | get 56 | { 57 | return ((string)(this["Speed"])); 58 | } 59 | set 60 | { 61 | this["Speed"] = value; 62 | } 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /RunCat/Properties/UserSettings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | cat 7 | 8 | 9 | 10 | 11 | 12 | default 13 | 14 | 15 | -------------------------------------------------------------------------------- /RunCat/RunCat.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net6.0-windows 6 | true 7 | appIcon.ico 8 | true 9 | RunCat.Program 10 | 2.1.1 11 | Takuto Nakamura 12 | A cute running cat animation on your windows taskbar. 13 | © 2022 Takuto Nakamura 14 | LICENSE 15 | https://github.com/scavin/RunCat_for_windows 16 | true 17 | win-x64;win-arm64 18 | AnyCPU;x64;ARM64 19 | 20 | 21 | 22 | Auto 23 | 24 | x64 25 | 26 | 27 | 28 | Auto 29 | 30 | ARM64 31 | 32 | 33 | 34 | 35 | True 36 | True 37 | Resources.resx 38 | 39 | 40 | True 41 | True 42 | UserSettings.settings 43 | 44 | 45 | 46 | 47 | 48 | ResXFileCodeGenerator 49 | Resources.Designer.cs 50 | 51 | 52 | 53 | 54 | 55 | True 56 | 57 | 58 | 59 | 60 | 61 | 62 | SettingsSingleFileGenerator 63 | UserSettings.Designer.cs 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /RunCat/appIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/appIcon.ico -------------------------------------------------------------------------------- /RunCat/resources/appIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/appIcon.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/dark_cat_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/dark_cat_0.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/dark_cat_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/dark_cat_1.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/dark_cat_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/dark_cat_2.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/dark_cat_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/dark_cat_3.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/dark_cat_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/dark_cat_4.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/light_cat_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/light_cat_0.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/light_cat_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/light_cat_1.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/light_cat_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/light_cat_2.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/light_cat_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/light_cat_3.ico -------------------------------------------------------------------------------- /RunCat/resources/cat/light_cat_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/cat/light_cat_4.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_0.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_1.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_10.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_11.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_12.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_12.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_13.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_13.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_2.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_3.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_4.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_5.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_6.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_7.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_8.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/dark_horse_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/dark_horse_9.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_0.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_1.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_10.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_11.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_12.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_12.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_13.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_13.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_2.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_3.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_4.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_5.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_6.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_7.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_8.ico -------------------------------------------------------------------------------- /RunCat/resources/horse/light_horse_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/horse/light_horse_9.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_0.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_1.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_10.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_11.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_12.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_12.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_13.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_13.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_14.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_14.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_15.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_15.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_16.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_2.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_3.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_4.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_5.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_6.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_7.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_8.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/dark_japaneseapology_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/dark_japaneseapology_9.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_0.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_1.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_10.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_11.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_12.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_12.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_13.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_13.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_14.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_14.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_15.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_15.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_16.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_2.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_3.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_4.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_5.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_6.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_7.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_8.ico -------------------------------------------------------------------------------- /RunCat/resources/japaneseapology/light_japaneseapology_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/japaneseapology/light_japaneseapology_9.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_0.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_1.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_2.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_3.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_4.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_5.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_6.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_7.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_8.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/dark_parrot_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/dark_parrot_9.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_0.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_1.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_2.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_3.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_4.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_5.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_6.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_7.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_8.ico -------------------------------------------------------------------------------- /RunCat/resources/parrot/light_parrot_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/parrot/light_parrot_9.ico -------------------------------------------------------------------------------- /RunCat/resources/runcat_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scavin/RunCat_for_windows/5cee475f57682fae16d179e2470ba9b502d19971/RunCat/resources/runcat_demo.gif --------------------------------------------------------------------------------