├── .gitignore ├── LICENSE ├── README.md ├── SystemTrayAnimator.sln └── SystemTrayAnimator ├── AccurateTimer.cs ├── AutoStarter.cs ├── EventArgs.cs ├── Forms ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── SettingsForm.Designer.cs ├── SettingsForm.cs └── SettingsForm.resx ├── Frame.cs ├── FrameList.cs ├── Images ├── Animations │ ├── Clock │ │ ├── Clock00.png │ │ ├── Clock01.png │ │ ├── Clock02.png │ │ ├── Clock03.png │ │ ├── Clock04.png │ │ ├── Clock05.png │ │ ├── Clock06.png │ │ ├── Clock07.png │ │ ├── Clock08.png │ │ ├── Clock09.png │ │ ├── Clock10.png │ │ ├── Clock11.png │ │ ├── Clock12.png │ │ ├── Clock13.png │ │ ├── Clock14.png │ │ ├── Clock15.png │ │ ├── Clock16.png │ │ ├── Clock17.png │ │ ├── Clock18.png │ │ ├── Clock19.png │ │ ├── Clock20.png │ │ ├── Clock21.png │ │ ├── Clock22.png │ │ ├── Clock23.png │ │ ├── Clock24.png │ │ ├── Clock25.png │ │ ├── Clock26.png │ │ ├── Clock27.png │ │ ├── Clock28.png │ │ ├── Clock29.png │ │ ├── Clock30.png │ │ ├── Clock31.png │ │ ├── Clock32.png │ │ ├── Clock33.png │ │ ├── Clock34.png │ │ ├── Clock35.png │ │ ├── Clock36.png │ │ ├── Clock37.png │ │ ├── Clock38.png │ │ ├── Clock39.png │ │ ├── Clock40.png │ │ ├── Clock41.png │ │ ├── Clock42.png │ │ ├── Clock43.png │ │ ├── Clock44.png │ │ ├── Clock45.png │ │ ├── Clock46.png │ │ ├── Clock47.png │ │ ├── Clock48.png │ │ ├── Clock49.png │ │ ├── Clock50.png │ │ ├── Clock51.png │ │ ├── Clock52.png │ │ ├── Clock53.png │ │ ├── Clock54.png │ │ ├── Clock55.png │ │ ├── Clock56.png │ │ ├── Clock57.png │ │ ├── Clock58.png │ │ └── Clock59.png │ ├── GreenSignal │ │ ├── GreenSignal00.png │ │ ├── GreenSignal01.png │ │ ├── GreenSignal02.png │ │ ├── GreenSignal03.png │ │ ├── GreenSignal04.png │ │ ├── GreenSignal05.png │ │ ├── GreenSignal06.png │ │ ├── GreenSignal07.png │ │ ├── GreenSignal08.png │ │ ├── GreenSignal09.png │ │ ├── GreenSignal10.png │ │ ├── GreenSignal11.png │ │ ├── GreenSignal12.png │ │ ├── GreenSignal13.png │ │ ├── GreenSignal14.png │ │ ├── GreenSignal15.png │ │ ├── GreenSignal16.png │ │ ├── GreenSignal17.png │ │ ├── GreenSignal18.png │ │ ├── GreenSignal19.png │ │ └── GreenSignal20.png │ ├── RedSignal │ │ ├── RedSignal00.png │ │ ├── RedSignal01.png │ │ ├── RedSignal02.png │ │ ├── RedSignal03.png │ │ ├── RedSignal04.png │ │ ├── RedSignal05.png │ │ ├── RedSignal06.png │ │ ├── RedSignal07.png │ │ ├── RedSignal08.png │ │ ├── RedSignal09.png │ │ ├── RedSignal10.png │ │ ├── RedSignal11.png │ │ ├── RedSignal12.png │ │ ├── RedSignal13.png │ │ ├── RedSignal14.png │ │ ├── RedSignal15.png │ │ ├── RedSignal16.png │ │ ├── RedSignal17.png │ │ ├── RedSignal18.png │ │ ├── RedSignal19.png │ │ └── RedSignal20.png │ ├── Timer │ │ ├── Timer_00_60.png │ │ ├── Timer_01_59.png │ │ ├── Timer_02_58.png │ │ ├── Timer_03_57.png │ │ ├── Timer_04_56.png │ │ ├── Timer_05_55.png │ │ ├── Timer_06_54.png │ │ ├── Timer_07_53.png │ │ ├── Timer_08_52.png │ │ ├── Timer_09_51.png │ │ ├── Timer_10_50.png │ │ ├── Timer_11_49.png │ │ ├── Timer_12_48.png │ │ ├── Timer_13_47.png │ │ ├── Timer_14_46.png │ │ ├── Timer_15_45.png │ │ ├── Timer_16_44.png │ │ ├── Timer_17_43.png │ │ ├── Timer_18_42.png │ │ ├── Timer_19_41.png │ │ ├── Timer_20_40.png │ │ ├── Timer_21_39.png │ │ ├── Timer_22_38.png │ │ ├── Timer_23_37.png │ │ ├── Timer_24_36.png │ │ ├── Timer_25_35.png │ │ ├── Timer_26_34.png │ │ ├── Timer_27_33.png │ │ ├── Timer_28_32.png │ │ ├── Timer_29_31.png │ │ ├── Timer_30_30.png │ │ ├── Timer_31_29.png │ │ ├── Timer_32_28.png │ │ ├── Timer_33_27.png │ │ ├── Timer_34_26.png │ │ ├── Timer_35_25.png │ │ ├── Timer_36_24.png │ │ ├── Timer_37_23.png │ │ ├── Timer_38_22.png │ │ ├── Timer_39_21.png │ │ ├── Timer_40_20.png │ │ ├── Timer_41_19.png │ │ ├── Timer_42_18.png │ │ ├── Timer_43_17.png │ │ ├── Timer_44_16.png │ │ ├── Timer_45_15.png │ │ ├── Timer_46_14.png │ │ ├── Timer_47_13.png │ │ ├── Timer_48_12.png │ │ ├── Timer_49_11.png │ │ ├── Timer_50_10.png │ │ ├── Timer_51_09.png │ │ ├── Timer_52_08.png │ │ ├── Timer_53_07.png │ │ ├── Timer_54_06.png │ │ ├── Timer_55_05.png │ │ ├── Timer_56_04.png │ │ ├── Timer_57_03.png │ │ ├── Timer_58_02.png │ │ ├── Timer_59_01.png │ │ └── Timer_60_00.png │ └── Umbrella │ │ ├── Umbrella01.png │ │ ├── Umbrella02.png │ │ ├── Umbrella03.png │ │ ├── Umbrella04.png │ │ ├── Umbrella05.png │ │ ├── Umbrella06.png │ │ ├── Umbrella07.png │ │ ├── Umbrella08.png │ │ ├── Umbrella09.png │ │ ├── Umbrella10.png │ │ ├── Umbrella11.png │ │ ├── Umbrella12.png │ │ ├── Umbrella13.png │ │ ├── Umbrella14.png │ │ ├── Umbrella15.png │ │ ├── Umbrella16.png │ │ ├── Umbrella17.png │ │ ├── Umbrella18.png │ │ ├── Umbrella19.png │ │ ├── Umbrella20.png │ │ ├── Umbrella21.png │ │ ├── Umbrella22.png │ │ ├── Umbrella23.png │ │ ├── Umbrella24.png │ │ ├── Umbrella25.png │ │ ├── Umbrella26.png │ │ ├── Umbrella27.png │ │ ├── Umbrella28.png │ │ ├── Umbrella29.png │ │ └── Umbrella30.png ├── Demo │ ├── Car.gif │ ├── Clock.gif │ ├── Cup.gif │ ├── GreenSignal.gif │ ├── Phone.gif │ ├── RedSignal.gif │ ├── Rocket.gif │ ├── Target.gif │ ├── Timer.gif │ ├── Umbrella.gif │ └── Walking.gif ├── Gifs │ ├── Walking.gif │ ├── car.gif │ ├── cup.gif │ ├── phone.gif │ ├── rocket.gif │ └── target.gif ├── SystemTrayAnimator.png └── SystemTrayAnimator128.png ├── MainApplicationContext.cs ├── Native ├── Enums │ ├── DpiAwarenessContext.cs.cs │ └── ProcessDpiAwareness.cs ├── SHCore.cs └── User32.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings ├── ApplicationSettings.cs └── ApplicationSettingsFile.cs ├── SystemTrayAnimator.csproj ├── SystemTrayAnimator.ico ├── SystemTrayMenu.cs ├── Utils ├── AssemblyUtils.cs ├── FileUtils.cs └── SystemUtils.cs └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/README.md -------------------------------------------------------------------------------- /SystemTrayAnimator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator.sln -------------------------------------------------------------------------------- /SystemTrayAnimator/AccurateTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/AccurateTimer.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/AutoStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/AutoStarter.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/EventArgs.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Forms/AboutForm.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Forms/AboutForm.resx -------------------------------------------------------------------------------- /SystemTrayAnimator/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /SystemTrayAnimator/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Frame.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/FrameList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/FrameList.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock00.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock01.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock02.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock03.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock04.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock05.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock06.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock07.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock08.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock09.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock10.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock11.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock12.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock13.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock14.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock15.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock16.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock17.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock18.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock19.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock20.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock21.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock22.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock23.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock24.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock25.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock26.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock27.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock28.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock29.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock30.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock31.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock32.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock33.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock34.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock35.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock36.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock37.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock38.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock39.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock40.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock41.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock42.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock43.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock44.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock45.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock46.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock47.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock48.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock49.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock50.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock51.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock52.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock53.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock54.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock55.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock56.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock57.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock58.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Clock/Clock59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Clock/Clock59.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal00.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal01.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal02.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal03.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal04.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal05.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal06.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal07.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal08.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal09.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal10.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal11.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal12.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal13.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal14.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal15.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal16.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal17.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal18.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal19.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/GreenSignal/GreenSignal20.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal00.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal01.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal02.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal03.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal04.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal05.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal06.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal07.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal08.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal09.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal10.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal11.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal12.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal13.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal14.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal15.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal16.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal17.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal18.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal19.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/RedSignal/RedSignal20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/RedSignal/RedSignal20.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_00_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_00_60.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_01_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_01_59.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_02_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_02_58.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_03_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_03_57.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_04_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_04_56.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_05_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_05_55.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_06_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_06_54.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_07_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_07_53.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_08_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_08_52.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_09_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_09_51.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_10_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_10_50.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_11_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_11_49.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_12_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_12_48.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_13_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_13_47.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_14_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_14_46.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_15_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_15_45.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_16_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_16_44.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_17_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_17_43.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_18_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_18_42.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_19_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_19_41.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_20_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_20_40.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_21_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_21_39.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_22_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_22_38.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_23_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_23_37.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_24_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_24_36.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_25_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_25_35.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_26_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_26_34.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_27_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_27_33.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_28_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_28_32.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_29_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_29_31.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_30_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_30_30.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_31_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_31_29.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_32_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_32_28.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_33_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_33_27.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_34_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_34_26.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_35_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_35_25.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_36_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_36_24.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_37_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_37_23.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_38_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_38_22.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_39_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_39_21.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_40_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_40_20.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_41_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_41_19.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_42_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_42_18.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_43_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_43_17.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_44_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_44_16.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_45_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_45_15.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_46_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_46_14.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_47_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_47_13.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_48_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_48_12.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_49_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_49_11.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_50_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_50_10.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_51_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_51_09.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_52_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_52_08.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_53_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_53_07.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_54_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_54_06.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_55_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_55_05.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_56_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_56_04.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_57_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_57_03.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_58_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_58_02.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_59_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_59_01.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Timer/Timer_60_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Timer/Timer_60_00.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella01.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella02.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella03.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella04.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella05.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella06.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella07.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella08.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella09.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella10.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella11.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella12.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella13.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella14.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella15.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella16.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella17.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella18.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella19.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella20.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella21.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella22.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella23.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella24.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella25.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella26.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella27.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella28.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella29.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Animations/Umbrella/Umbrella30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Animations/Umbrella/Umbrella30.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Car.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Clock.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Cup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Cup.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/GreenSignal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/GreenSignal.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Phone.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/RedSignal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/RedSignal.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Rocket.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Rocket.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Target.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Timer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Timer.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Umbrella.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Umbrella.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Demo/Walking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Demo/Walking.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Gifs/Walking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Gifs/Walking.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Gifs/car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Gifs/car.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Gifs/cup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Gifs/cup.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Gifs/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Gifs/phone.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Gifs/rocket.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Gifs/rocket.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/Gifs/target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/Gifs/target.gif -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/SystemTrayAnimator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/SystemTrayAnimator.png -------------------------------------------------------------------------------- /SystemTrayAnimator/Images/SystemTrayAnimator128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Images/SystemTrayAnimator128.png -------------------------------------------------------------------------------- /SystemTrayAnimator/MainApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/MainApplicationContext.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Native/Enums/DpiAwarenessContext.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Native/Enums/DpiAwarenessContext.cs.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Native/Enums/ProcessDpiAwareness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Native/Enums/ProcessDpiAwareness.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Native/SHCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Native/SHCore.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Native/User32.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Program.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Properties/Resources.resx -------------------------------------------------------------------------------- /SystemTrayAnimator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Properties/Settings.settings -------------------------------------------------------------------------------- /SystemTrayAnimator/Settings/ApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Settings/ApplicationSettings.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Settings/ApplicationSettingsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Settings/ApplicationSettingsFile.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/SystemTrayAnimator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/SystemTrayAnimator.csproj -------------------------------------------------------------------------------- /SystemTrayAnimator/SystemTrayAnimator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/SystemTrayAnimator.ico -------------------------------------------------------------------------------- /SystemTrayAnimator/SystemTrayMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/SystemTrayMenu.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Utils/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Utils/AssemblyUtils.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Utils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Utils/FileUtils.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/Utils/SystemUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/Utils/SystemUtils.cs -------------------------------------------------------------------------------- /SystemTrayAnimator/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SystemTrayAnimator/HEAD/SystemTrayAnimator/app.manifest --------------------------------------------------------------------------------