├── .gitattributes ├── .github └── workflows │ └── Dynamic-Readme.yml ├── .gitignore ├── @Resources ├── @Structure │ └── Include.inc ├── Actions │ ├── AHKv1.exe │ ├── HotKeys.ini │ ├── InstallData.ini │ ├── Installer.ahk │ └── Source code │ │ ├── Close.ahk │ │ ├── FadeIn.ahk │ │ ├── FadeOut.ahk │ │ └── IdleStyle.ahk ├── Cursors │ ├── default.cur │ ├── leftright.cur │ ├── topbottom.cur │ ├── topleftbottomright.cur │ └── toprightbottomleft.cur ├── Fonts │ ├── Atami-Display-Regular.otf │ ├── Atami-Regular.otf │ ├── Atami-Stencil.otf │ ├── JDWI-MISC.ttf │ ├── JDWI-MOON.ttf │ ├── JDWI-WIND.ttf │ ├── JDWI.ttf │ ├── Poppins-Bold.ttf │ ├── Poppins-ExtraBold.ttf │ ├── Poppins-ExtraLight.ttf │ ├── Poppins-Light.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ ├── Poppins-SemiBold.ttf │ ├── Poppins-Thin.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── Runic-Regular.otf │ └── SF-Pro-Rounded-Regular.otf ├── Global │ ├── DefaultVideo.mp4 │ ├── WeatherParser.inc │ └── WeatherParserDaily.inc ├── Icons │ └── WeatherIcons │ │ ├── clear-day.png │ │ ├── clear-night.png │ │ ├── cloudy-day.png │ │ ├── cloudy-night.png │ │ ├── cloudy.png │ │ ├── fog-day.png │ │ ├── fog-night.png │ │ ├── fog.png │ │ ├── partly-cloudy-day.png │ │ ├── partly-cloudy-night.png │ │ ├── rain-day.png │ │ ├── rain-night.png │ │ ├── rain.png │ │ ├── sleet-day.png │ │ ├── sleet-night.png │ │ ├── sleet.png │ │ ├── snow-day.png │ │ ├── snow-night.png │ │ ├── snow.png │ │ ├── storm-day.png │ │ ├── storm-night.png │ │ ├── storm.png │ │ ├── unknown.png │ │ └── windy.png ├── Images │ ├── DefaultPaper.png │ ├── DefaultPaperTwo.png │ ├── IdleStyle.png │ └── Logo256.png ├── Lua │ ├── Func.lua │ ├── LaunchedFuncs.lua │ ├── MouseHandler.lua │ └── WindowHandler.lua ├── LuaTween │ ├── Main.lua │ ├── Types │ │ ├── Chain.lua │ │ ├── Multiple.lua │ │ ├── Single.lua │ │ └── _Shared.lua │ └── tween.lua ├── PatchNoteVar.inc ├── Vars.inc ├── Version.inc └── WelcomeVar.inc ├── @Start ├── DownloadFile │ └── Parsed.inc ├── IdleStyle.png ├── Logic.lua ├── Logo.png └── Main.ini ├── Core ├── #page.inc ├── Animation.inc ├── Animation │ ├── Center.png │ ├── CoreUI.png │ ├── CustomCenter.png │ ├── CustomGroup.png │ ├── CustomPaper.png │ ├── CustomVideo.png │ ├── JD.png │ ├── Ninety.png │ └── String.png ├── Appearance.inc ├── AppearanceStyles │ ├── Center.inc │ ├── CoreUI.inc │ ├── CustomGroup.inc │ ├── CustomPaper.inc │ ├── CustomVideo.inc │ ├── DropdownStyles │ │ └── StringContent.inc │ ├── JD.inc │ ├── Ninety.inc │ └── String.inc ├── Checkffplay.ps1 ├── Gen.lua ├── General.inc ├── Info.inc ├── Info │ ├── Appearance │ │ ├── JDWS.inc │ │ ├── SkinsList.inc │ │ └── ffplay.inc │ └── General │ │ ├── Checks.inc │ │ ├── IdleTiming.inc │ │ └── Position.inc ├── PatchNote │ ├── Main.inc │ ├── Main0.inc │ └── Main1.inc ├── Position.inc └── Window │ ├── Setup.inc │ └── Setup │ ├── 1.inc │ ├── 2.inc │ ├── 3.inc │ ├── 4.inc │ ├── 5.inc │ ├── 6.inc │ ├── 7.inc │ ├── DiscordHelp.inc │ ├── Supported.inc │ └── Unsupported.inc ├── Idleworkspace.code-workspace ├── LICENSE ├── Launch ├── Addons │ ├── ExtenderDisplay │ │ └── Main.ini │ ├── ExtenderEditor │ │ └── Main.ini │ └── JDWS │ │ └── Annen.ini ├── Main.ini ├── Preview.ini ├── Styles │ ├── Center.inc │ ├── CoreUI.inc │ ├── CustomGroup.inc │ ├── CustomPaper.inc │ ├── CustomVideo.inc │ ├── JD.inc │ ├── Ninety.inc │ └── String.inc └── Vars │ ├── Center.inc │ ├── CoreUI.inc │ ├── CustomGroup.inc │ ├── CustomPaper.inc │ ├── CustomVideo.inc │ ├── JD.inc │ ├── Ninety.inc │ └── String.inc ├── Main └── Main.ini └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Dynamic-Readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/.github/workflows/Dynamic-Readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/.gitignore -------------------------------------------------------------------------------- /@Resources/@Structure/Include.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /@Resources/Actions/AHKv1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/AHKv1.exe -------------------------------------------------------------------------------- /@Resources/Actions/HotKeys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/HotKeys.ini -------------------------------------------------------------------------------- /@Resources/Actions/InstallData.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/InstallData.ini -------------------------------------------------------------------------------- /@Resources/Actions/Installer.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/Installer.ahk -------------------------------------------------------------------------------- /@Resources/Actions/Source code/Close.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/Source code/Close.ahk -------------------------------------------------------------------------------- /@Resources/Actions/Source code/FadeIn.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/Source code/FadeIn.ahk -------------------------------------------------------------------------------- /@Resources/Actions/Source code/FadeOut.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/Source code/FadeOut.ahk -------------------------------------------------------------------------------- /@Resources/Actions/Source code/IdleStyle.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Actions/Source code/IdleStyle.ahk -------------------------------------------------------------------------------- /@Resources/Cursors/default.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Cursors/default.cur -------------------------------------------------------------------------------- /@Resources/Cursors/leftright.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Cursors/leftright.cur -------------------------------------------------------------------------------- /@Resources/Cursors/topbottom.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Cursors/topbottom.cur -------------------------------------------------------------------------------- /@Resources/Cursors/topleftbottomright.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Cursors/topleftbottomright.cur -------------------------------------------------------------------------------- /@Resources/Cursors/toprightbottomleft.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Cursors/toprightbottomleft.cur -------------------------------------------------------------------------------- /@Resources/Fonts/Atami-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Atami-Display-Regular.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Atami-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Atami-Regular.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Atami-Stencil.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Atami-Stencil.otf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI-MISC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/JDWI-MISC.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI-MOON.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/JDWI-MOON.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI-WIND.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/JDWI-WIND.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/JDWI.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Runic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/Runic-Regular.otf -------------------------------------------------------------------------------- /@Resources/Fonts/SF-Pro-Rounded-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Fonts/SF-Pro-Rounded-Regular.otf -------------------------------------------------------------------------------- /@Resources/Global/DefaultVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Global/DefaultVideo.mp4 -------------------------------------------------------------------------------- /@Resources/Global/WeatherParser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Global/WeatherParser.inc -------------------------------------------------------------------------------- /@Resources/Global/WeatherParserDaily.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Global/WeatherParserDaily.inc -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/clear-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/clear-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/cloudy-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/cloudy-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/cloudy.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/fog-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/fog-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/fog-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/fog-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/fog.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/partly-cloudy-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/partly-cloudy-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/rain-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/rain-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/rain-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/rain-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/rain.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/sleet-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/sleet-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/sleet-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/sleet-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/sleet.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/snow-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/snow-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/snow-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/snow-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/snow.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/storm-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/storm-day.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/storm-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/storm-night.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/storm.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/unknown.png -------------------------------------------------------------------------------- /@Resources/Icons/WeatherIcons/windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Icons/WeatherIcons/windy.png -------------------------------------------------------------------------------- /@Resources/Images/DefaultPaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Images/DefaultPaper.png -------------------------------------------------------------------------------- /@Resources/Images/DefaultPaperTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Images/DefaultPaperTwo.png -------------------------------------------------------------------------------- /@Resources/Images/IdleStyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Images/IdleStyle.png -------------------------------------------------------------------------------- /@Resources/Images/Logo256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Images/Logo256.png -------------------------------------------------------------------------------- /@Resources/Lua/Func.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Lua/Func.lua -------------------------------------------------------------------------------- /@Resources/Lua/LaunchedFuncs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Lua/LaunchedFuncs.lua -------------------------------------------------------------------------------- /@Resources/Lua/MouseHandler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Lua/MouseHandler.lua -------------------------------------------------------------------------------- /@Resources/Lua/WindowHandler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Lua/WindowHandler.lua -------------------------------------------------------------------------------- /@Resources/LuaTween/Main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/LuaTween/Main.lua -------------------------------------------------------------------------------- /@Resources/LuaTween/Types/Chain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/LuaTween/Types/Chain.lua -------------------------------------------------------------------------------- /@Resources/LuaTween/Types/Multiple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/LuaTween/Types/Multiple.lua -------------------------------------------------------------------------------- /@Resources/LuaTween/Types/Single.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/LuaTween/Types/Single.lua -------------------------------------------------------------------------------- /@Resources/LuaTween/Types/_Shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/LuaTween/Types/_Shared.lua -------------------------------------------------------------------------------- /@Resources/LuaTween/tween.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/LuaTween/tween.lua -------------------------------------------------------------------------------- /@Resources/PatchNoteVar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/PatchNoteVar.inc -------------------------------------------------------------------------------- /@Resources/Vars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Vars.inc -------------------------------------------------------------------------------- /@Resources/Version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/Version.inc -------------------------------------------------------------------------------- /@Resources/WelcomeVar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Resources/WelcomeVar.inc -------------------------------------------------------------------------------- /@Start/DownloadFile/Parsed.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Start/DownloadFile/Parsed.inc -------------------------------------------------------------------------------- /@Start/IdleStyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Start/IdleStyle.png -------------------------------------------------------------------------------- /@Start/Logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Start/Logic.lua -------------------------------------------------------------------------------- /@Start/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Start/Logo.png -------------------------------------------------------------------------------- /@Start/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/@Start/Main.ini -------------------------------------------------------------------------------- /Core/#page.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/#page.inc -------------------------------------------------------------------------------- /Core/Animation.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation.inc -------------------------------------------------------------------------------- /Core/Animation/Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/Center.png -------------------------------------------------------------------------------- /Core/Animation/CoreUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/CoreUI.png -------------------------------------------------------------------------------- /Core/Animation/CustomCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/CustomCenter.png -------------------------------------------------------------------------------- /Core/Animation/CustomGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/CustomGroup.png -------------------------------------------------------------------------------- /Core/Animation/CustomPaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/CustomPaper.png -------------------------------------------------------------------------------- /Core/Animation/CustomVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/CustomVideo.png -------------------------------------------------------------------------------- /Core/Animation/JD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/JD.png -------------------------------------------------------------------------------- /Core/Animation/Ninety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/Ninety.png -------------------------------------------------------------------------------- /Core/Animation/String.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Animation/String.png -------------------------------------------------------------------------------- /Core/Appearance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Appearance.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/Center.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/Center.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/CoreUI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/CoreUI.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/CustomGroup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/CustomGroup.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/CustomPaper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/CustomPaper.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/CustomVideo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/CustomVideo.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/DropdownStyles/StringContent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/DropdownStyles/StringContent.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/JD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/JD.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/Ninety.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/Ninety.inc -------------------------------------------------------------------------------- /Core/AppearanceStyles/String.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/AppearanceStyles/String.inc -------------------------------------------------------------------------------- /Core/Checkffplay.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Checkffplay.ps1 -------------------------------------------------------------------------------- /Core/Gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Gen.lua -------------------------------------------------------------------------------- /Core/General.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/General.inc -------------------------------------------------------------------------------- /Core/Info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info.inc -------------------------------------------------------------------------------- /Core/Info/Appearance/JDWS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info/Appearance/JDWS.inc -------------------------------------------------------------------------------- /Core/Info/Appearance/SkinsList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info/Appearance/SkinsList.inc -------------------------------------------------------------------------------- /Core/Info/Appearance/ffplay.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info/Appearance/ffplay.inc -------------------------------------------------------------------------------- /Core/Info/General/Checks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info/General/Checks.inc -------------------------------------------------------------------------------- /Core/Info/General/IdleTiming.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info/General/IdleTiming.inc -------------------------------------------------------------------------------- /Core/Info/General/Position.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Info/General/Position.inc -------------------------------------------------------------------------------- /Core/PatchNote/Main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/PatchNote/Main.inc -------------------------------------------------------------------------------- /Core/PatchNote/Main0.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/PatchNote/Main0.inc -------------------------------------------------------------------------------- /Core/PatchNote/Main1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/PatchNote/Main1.inc -------------------------------------------------------------------------------- /Core/Position.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Position.inc -------------------------------------------------------------------------------- /Core/Window/Setup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup.inc -------------------------------------------------------------------------------- /Core/Window/Setup/1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/1.inc -------------------------------------------------------------------------------- /Core/Window/Setup/2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/2.inc -------------------------------------------------------------------------------- /Core/Window/Setup/3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/3.inc -------------------------------------------------------------------------------- /Core/Window/Setup/4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/4.inc -------------------------------------------------------------------------------- /Core/Window/Setup/5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/5.inc -------------------------------------------------------------------------------- /Core/Window/Setup/6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/6.inc -------------------------------------------------------------------------------- /Core/Window/Setup/7.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/7.inc -------------------------------------------------------------------------------- /Core/Window/Setup/DiscordHelp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/DiscordHelp.inc -------------------------------------------------------------------------------- /Core/Window/Setup/Supported.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/Supported.inc -------------------------------------------------------------------------------- /Core/Window/Setup/Unsupported.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Core/Window/Setup/Unsupported.inc -------------------------------------------------------------------------------- /Idleworkspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Idleworkspace.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/LICENSE -------------------------------------------------------------------------------- /Launch/Addons/ExtenderDisplay/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Addons/ExtenderDisplay/Main.ini -------------------------------------------------------------------------------- /Launch/Addons/ExtenderEditor/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Addons/ExtenderEditor/Main.ini -------------------------------------------------------------------------------- /Launch/Addons/JDWS/Annen.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Addons/JDWS/Annen.ini -------------------------------------------------------------------------------- /Launch/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Main.ini -------------------------------------------------------------------------------- /Launch/Preview.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Preview.ini -------------------------------------------------------------------------------- /Launch/Styles/Center.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/Center.inc -------------------------------------------------------------------------------- /Launch/Styles/CoreUI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/CoreUI.inc -------------------------------------------------------------------------------- /Launch/Styles/CustomGroup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/CustomGroup.inc -------------------------------------------------------------------------------- /Launch/Styles/CustomPaper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/CustomPaper.inc -------------------------------------------------------------------------------- /Launch/Styles/CustomVideo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/CustomVideo.inc -------------------------------------------------------------------------------- /Launch/Styles/JD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/JD.inc -------------------------------------------------------------------------------- /Launch/Styles/Ninety.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/Ninety.inc -------------------------------------------------------------------------------- /Launch/Styles/String.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Styles/String.inc -------------------------------------------------------------------------------- /Launch/Vars/Center.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/Center.inc -------------------------------------------------------------------------------- /Launch/Vars/CoreUI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/CoreUI.inc -------------------------------------------------------------------------------- /Launch/Vars/CustomGroup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/CustomGroup.inc -------------------------------------------------------------------------------- /Launch/Vars/CustomPaper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/CustomPaper.inc -------------------------------------------------------------------------------- /Launch/Vars/CustomVideo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/CustomVideo.inc -------------------------------------------------------------------------------- /Launch/Vars/JD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/JD.inc -------------------------------------------------------------------------------- /Launch/Vars/Ninety.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/Ninety.inc -------------------------------------------------------------------------------- /Launch/Vars/String.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Launch/Vars/String.inc -------------------------------------------------------------------------------- /Main/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/Main/Main.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/IdleStyle/HEAD/README.md --------------------------------------------------------------------------------