├── .github └── workflows │ └── Dynamic-Readme.yml ├── @Resources ├── Actions │ ├── AHKv1.exe │ ├── InstallData.ini │ └── Installer.ahk ├── Fonts │ ├── Consolas.TTF │ ├── Lucida Console Regular.ttf │ ├── Poppins-Black.ttf │ ├── Poppins-BlackItalic.ttf │ ├── Poppins-Bold.ttf │ ├── Poppins-BoldItalic.ttf │ ├── Poppins-ExtraBold.ttf │ ├── Poppins-ExtraBoldItalic.ttf │ ├── Poppins-ExtraLight.ttf │ ├── Poppins-ExtraLightItalic.ttf │ ├── Poppins-Light.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-MediumItalic.ttf │ ├── Poppins-Regular.ttf │ ├── Poppins-SemiBold.ttf │ ├── Poppins-SemiBoldItalic.ttf │ ├── Poppins-Thin.ttf │ ├── Poppins-ThinItalic.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.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 │ ├── RobotoMono-Light.ttf │ ├── Runic-Regular.otf │ └── clacon.ttf ├── Images │ ├── HeaderImage.bmp │ ├── HeaderImage.pdn │ ├── Logo.png │ ├── P1.png │ ├── P3.png │ ├── P4.png │ ├── Splash.png │ └── SplashPDN.pdn ├── Includes │ └── GlobalStyles.inc ├── PatchNoteVar.inc ├── Vars.inc └── Version.inc ├── @Start ├── DownloadFile │ └── Parsed.inc ├── Logic.lua ├── Logo.png ├── Main.ini └── Plainext.png ├── Core ├── #page.inc ├── Appearance.inc ├── ColorScheme.inc ├── GenPlainextDrives.lua ├── General.inc ├── Help.inc ├── Info.inc ├── Modules.inc └── PatchNote │ └── Main.inc ├── LICENSE ├── Main ├── @1 │ ├── CPU.inc │ ├── Drives.inc │ ├── GPU.inc │ ├── Misc.inc │ ├── Name.inc │ ├── Overview.inc │ ├── Prefix.inc │ ├── RAM.inc │ └── Time.inc ├── @Measures │ ├── CPUTOP.inc │ ├── GPUTOP.inc │ ├── Mainm.inc │ └── RAMTOP.inc ├── @Styles │ ├── Default.inc │ └── MSDOS.inc └── Main.ini ├── README.md └── plainextworkspace.code-workspace /.github/workflows/Dynamic-Readme.yml: -------------------------------------------------------------------------------- 1 | name: "📄 Dynamic ReadME" 2 | 3 | env: 4 | VS_WORKFLOW_TYPE: "dynamic-readme" 5 | 6 | on: 7 | workflow_dispatch: 8 | push: 9 | branches: 10 | - main 11 | paths: 12 | - README.md 13 | 14 | jobs: 15 | update_readme: 16 | name: "Render & Update ReadME" 17 | runs-on: ubuntu-latest 18 | steps: 19 | - name: "📥 Fetching Repository Contents" 20 | uses: actions/checkout@main 21 | 22 | - name: "💾 Github Repository Metadata" 23 | uses: varunsridharan/action-repository-meta@main 24 | env: 25 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 26 | 27 | - name: "💫 Update README.md" 28 | uses: "varunsridharan/action-dynamic-readme@main" 29 | with: 30 | GLOBAL_TEMPLATE_REPOSITORY: Jax-Core/ReadME-Template/Templates 31 | commit_message: ⏩ File Rebuilt by Github Actions - Dynamic ReadME 32 | files: | 33 | README.md 34 | env: 35 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 36 | -------------------------------------------------------------------------------- /@Resources/Actions/AHKv1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Actions/AHKv1.exe -------------------------------------------------------------------------------- /@Resources/Actions/InstallData.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Actions/InstallData.ini -------------------------------------------------------------------------------- /@Resources/Actions/Installer.ahk: -------------------------------------------------------------------------------- 1 | #SingleInstance, Force 2 | SendMode Input 3 | SetWorkingDir, %A_ScriptDir% 4 | 5 | IniRead, SaveLocation, InstallData.ini, Data, SaveLocation 6 | IniRead, DownloadLink, InstallData.ini, Data, DownloadLink 7 | 8 | SplashTextOn , 400, 100, Rainmeter, "Downloading skin..." 9 | UrlDownloadToFile, %DownloadLink%, %SaveLocation%\INSTALL.rmskin 10 | SplashTextOff 11 | Run, INSTALL.rmskin 12 | WinWait, Rainmeter Skin Installer 13 | Sleep, 100 14 | Send, {Enter} 15 | 16 | ExitApp -------------------------------------------------------------------------------- /@Resources/Fonts/Consolas.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Consolas.TTF -------------------------------------------------------------------------------- /@Resources/Fonts/Lucida Console Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Lucida Console Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Runic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/Runic-Regular.otf -------------------------------------------------------------------------------- /@Resources/Fonts/clacon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Fonts/clacon.ttf -------------------------------------------------------------------------------- /@Resources/Images/HeaderImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/HeaderImage.bmp -------------------------------------------------------------------------------- /@Resources/Images/HeaderImage.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/HeaderImage.pdn -------------------------------------------------------------------------------- /@Resources/Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/Logo.png -------------------------------------------------------------------------------- /@Resources/Images/P1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/P1.png -------------------------------------------------------------------------------- /@Resources/Images/P3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/P3.png -------------------------------------------------------------------------------- /@Resources/Images/P4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/P4.png -------------------------------------------------------------------------------- /@Resources/Images/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/Splash.png -------------------------------------------------------------------------------- /@Resources/Images/SplashPDN.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Images/SplashPDN.pdn -------------------------------------------------------------------------------- /@Resources/Includes/GlobalStyles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Includes/GlobalStyles.inc -------------------------------------------------------------------------------- /@Resources/PatchNoteVar.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | Core.patchNoteCheckvariable=enhan 3 | -------------------------------------------------------------------------------- /@Resources/Vars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Vars.inc -------------------------------------------------------------------------------- /@Resources/Version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Resources/Version.inc -------------------------------------------------------------------------------- /@Start/DownloadFile/Parsed.inc: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | Rightmouseupaction=[] 3 | OnRefreshAction=[!ZPos 1][!Move (#SCREENAREAWIDTH#/2-#Sec.W#/2) (#SCREENAREAHEIGHT#/2-#Sec.H#/2)][!SetOption Dep3 MeterStyle "Dep.Shape:S | Dep.ShapeYes:S"][!UpdateMEter *][!Redraw] 4 | 5 | ; ---------------------------------------------------------------------------- ; 6 | ; Export vars ; 7 | ; ---------------------------------------------------------------------------- ; 8 | 9 | [ExportVariables] 10 | Measure=Calc 11 | OnUpdateAction=[!WriteKeyValue Variables RMPATH "#PROGRAMPATH#Rainmeter.exe" "#@#Actions\Hotkeys.ini"][!Delay 100][!EnableMeasureGroup NUOL] 12 | 13 | [CheckModular] 14 | Measure=String 15 | String=#ROOTCONFIG# 16 | IFmatch=ModularClocks|ModularPlayers 17 | IfNotMatchAction=[!HideMeter Dep2][!HideMeter Deptext2][!Redraw] 18 | 19 | [Variables] 20 | @includeVersion=#@#Version.inc 21 | @includeJaxCoreChecker=#SKINSPATH#\#JaxCore\@Resources\Version.inc 22 | Sec.W=800 23 | Sec.H=500 24 | Sec.P=40 25 | Sec.L=350 26 | Sec.R=10 27 | 28 | Pri_Color=12,12,12 29 | Sec_Color=28,28,28 30 | Ter_Color=35,35,35 31 | Accent_Color=255, 117, 81 32 | Text_Color=242,240,255 33 | SubText_Color=120,120,120 34 | 35 | [String:S] 36 | FontColor=#Text_Color# 37 | Fontface=Roboto Light 38 | AntiAlias=1 39 | X=r 40 | Y=10R 41 | FontSize=10 42 | 43 | [Dep.Shape:S] 44 | X=-20r 45 | Y=35r 46 | Shape=Rectangle 0,0,(#SEc.W#-#Sec.L#-#Sec.P#*2),50,2.5 | StrokeWidth 0 | Extend This 47 | Shape2=Rectangle 0,0,5,50,2.5 | StrokeWidth 0 | Fill Color #SubText_Color# 48 | This=fill Color 0,0,0,1 49 | MouseOverAction=[!SetOption #CURRENTSECTION# This "Fill Color #Ter_Color#"][!UpdateMeter #CURRENTSECTION#][!Redraw] 50 | MouseLeaveAction=[!SetOption #CURRENTSECTION# This "Fill Color 0,0,0,1"][!UpdateMeter #CURRENTSECTION#][!Redraw] 51 | [Dep.ShapeYes:S] 52 | Shape2=Rectangle 0,0,5,50,2.5 | StrokeWidth 0 | Fill Color 0,255,50,100 53 | This=Fill Color 0,255,50,50 54 | MouseOverAction=[!SetOption #CURRENTSECTION# This "Fill Color 0,255,50,100"][!UpdateMeter #CURRENTSECTION#][!Redraw] 55 | MouseLeaveAction=[!SetOption #CURRENTSECTION# This "Fill Color 0,255,50,50"][!UpdateMeter #CURRENTSECTION#][!Redraw] 56 | [Dep.ShapeNo:S] 57 | Shape2=Rectangle 0,0,5,50,2.5 | StrokeWidth 0 | Fill Color 255,0,0,100 58 | This=Fill Color 255,0,0,50 59 | MouseOverAction=[!SetOption #CURRENTSECTION# This "Fill Color 255,0,0,100"][!UpdateMeter #CURRENTSECTION#][!Redraw] 60 | MouseLeaveAction=[!SetOption #CURRENTSECTION# This "Fill Color 255,0,0,50"][!UpdateMeter #CURRENTSECTION#][!Redraw] 61 | [Dep.Text:S] 62 | X=20r 63 | Y=25r 64 | W=(#SEc.W#-#Sec.L#-#Sec.P#*2-50) 65 | clipString=2 66 | StringAlign=LeftCenter 67 | FontColor=#Text_Color# 68 | Fontface=Roboto 69 | AntiAlias=1 70 | FontSize=12 71 | InlinePattern=//.* 72 | InlineSetting=Color | #SubText_Color# 73 | InlinePattern2=//.* 74 | InlineSetting2=Size | 10 75 | 76 | ; ---------------------------------------------------------------------------- ; 77 | ; Content ; 78 | ; ---------------------------------------------------------------------------- ; 79 | 80 | ; ------------------------------------ Gen ----------------------------------- ; 81 | 82 | [B] 83 | Meter=Shape 84 | Shape=Rectangle 0,0,#Sec.W#,#Sec.H#,#sec.R# | strokeWidth 0 | Fill Color #Pri_Color# 85 | [BC] 86 | Meter=Shape 87 | X=(#Sec.W#-#SEc.L#) 88 | Shape=Rectangle 0,0,(#Sec.L#),#Sec.H#,#sec.R# | strokeWidth 0 | Fill LinearGradient This 89 | This=0 | 0,0,0,150 ; 0.0 | 0,0,0,0 ; 1.0 90 | 91 | [Logo] 92 | Meter=Image 93 | ImageName=Logo.png 94 | X=#Sec.P# 95 | Y=(#Sec.H#-#Sec.P#-40) 96 | W=40 97 | H=40 98 | 99 | [Image] 100 | Meter=Image 101 | Container=BC 102 | ; X=(#Sec.L#-#Sec.H#*6/4) 103 | ; PreserveAspectRatio=0 104 | H=#Sec.H# 105 | W=#Sec.L# 106 | PreserveAspectRatio=2 107 | ImageName=#ROOTCONFIG#.png 108 | 109 | [Esc] 110 | Meter=Shape 111 | DynamicVariables=1 112 | Shape=Ellipse (#Sec.W#-15),(15),(5),(5) | StrokeWidth 10 | StrokeColor 0,0,0,1 | Extend FillE 113 | FillE=Fill Color #Text_Color#,50 114 | MouseOverAction=[!SetOption Esc FillE "Fill Color #Text_Color#"][!UpdateMeter Esc][!Redraw] 115 | MouseLeaveAction=[!SetOption Esc FillE "Fill Color #Text_Color#,50"][!UpdateMeter Esc][!Redraw] 116 | LeftMouseUpAction=[!DeactivateConfig] 117 | 118 | ; --------------------------------- Left --------------------------------- ; 119 | 120 | [MainText] 121 | Meter=String 122 | X=(#Sec.P#) 123 | Y=#Sec.P# 124 | Text=#ROOTCONFIG# by Jax | #Version# 125 | StringAlign=LEftTOp 126 | FontFace=Roboto Bold 127 | FontSize=25 128 | InlinePattern=by.* 129 | InlineSetting=Size | 10 130 | InlinePattern2=by.* 131 | InlineSetting2=Color | #SubText_Color# 132 | InlinePattern3=by.* 133 | InlineSetting3=Face | Roboto 134 | MeterStyle=String:S 135 | 136 | [Des] 137 | Meter=String 138 | Text=Here you can find the list of dependencies. Click on any one of them to install, make sure you are connected to the internet. 139 | W=(#SEc.W#-#Sec.L#-#Sec.P#*2) 140 | clipString=2 141 | MeterStyle=String:S 142 | 143 | ; ------------------------------------ Dep ----------------------------------- ; 144 | 145 | [Dep1] 146 | Meter=Shape 147 | X=r 148 | Y=20R 149 | MEterStyle=Dep.Shape:S 150 | [DepText1] 151 | Meter=String 152 | Text=JaxCore // Checking... 153 | MeterStyle=Dep.Text:S 154 | 155 | [Dep3] 156 | Meter=Shape 157 | MEterStyle=Dep.Shape:S 158 | [DepText3] 159 | Meter=String 160 | Text=Your appreciation 161 | MeterStyle=Dep.Text:S 162 | 163 | [Dep2] 164 | Meter=Shape 165 | MEterStyle=Dep.Shape:S 166 | Leftmouseupaction=["https://github.com/khanhas/MagickMeter#how-to-install"] 167 | [DepText2] 168 | Meter=String 169 | Text=ImageMagick // optional - required for Modular skins 170 | MeterStyle=Dep.Text:S 171 | 172 | ; ------------------------------------ Bot ----------------------------------- ; 173 | 174 | [ContinueButton] 175 | Meter=Shape 176 | X=(#Sec.P#+50) 177 | Y=(#Sec.H#-#Sec.P#-40) 178 | DynamicVariables=1 179 | Shape=Rectangle 0,0,120,40,(#Sec.R#/3) | StrokeWidth 0 | Fill COlor 0,255,50,200 180 | Leftmouseupaction=[!ActivateConfig "#JaxCore\Main" "Home.ini"][!DeactivateConfig] 181 | Hidden=1 182 | Group=Button 183 | [ContinueText] 184 | Meter=String 185 | X=(60)r 186 | y=(20)r 187 | FontSize=(10) 188 | Text=Continue 189 | FontFace=Roboto 190 | FontWeight=700 191 | StringAlign=CenterCenter 192 | MeterStyle=String:S 193 | Hidden=1 194 | Group=Button 195 | 196 | ; ---------------------------------------------------------------------------- ; 197 | ; Check for jax core ; 198 | ; ---------------------------------------------------------------------------- ; 199 | 200 | [WebParser] 201 | Measure=Calc 202 | Formula=40000 203 | ;URL=https://raw.githubusercontent.com/Jax-Core/JaxCore/main/%40Resources/Version.inc 204 | ;RegExp==(.*)$ 205 | OnUpdateAction=[!Delay 1000][!CommandMeasure LogicalScript "check()"] 206 | OnConnectionErrorAction=[!SetOption Dep1 MeterStyle "Dep.Shape:S | Dep.ShapeNo:S"][!SetOption DepText1 Text "//Failed to connect to JaxCore github, if this is an issue please report to me"][!UpdateMEter *][!Redraw] 207 | OnRegExpErrorAction=[!Log Developer:RegExpFalse] 208 | Disabled=1 209 | 210 | [WebParserCheck] 211 | Measure=Calc 212 | IfCondition=#Parsed# = 1 213 | IfTrueAction=[!EnableMeasure WebParser][!UpdateMeasure WebParser][!CommandMeasure WebParser "Reset"] 214 | 215 | [InternetStatus] 216 | Measure=PLUGIN 217 | Plugin=SysInfo 218 | SysInfoType=INTERNET_CONNECTIVITY 219 | IfCondition=InternetStatus = -1 220 | ifTrueaction=[!SetOption Dep1 MeterStyle "Dep.Shape:S | Dep.ShapeNo:S"][!SetOption DepText1 Text "JaxCore // connection error, please check internet connection"][!UpdateMEter *][!Redraw] 221 | 222 | [mVer] 223 | Measure=Calc 224 | Formula=40000 225 | ;Measure=WebParser 226 | ;URL=[WebParser] 227 | ;StringIndex=1 228 | 229 | [LogicalScript] 230 | Measure=Script 231 | ScriptFile=Logic.lua 232 | 233 | [JaxCoreYes] 234 | Measure=String 235 | Group=NUOL 236 | Disabled=1 237 | OnUpdateAction=[!SetOption Dep1 MeterStyle "Dep.Shape:S | Dep.ShapeYes:S"][!SetOption DepText1 Text "JaxCore // v#Core.Ver# installed"][!ShowMeterGroup Button][!UpdateMEter *][!Redraw] 238 | 239 | [JaxCoreNo] 240 | Measure=String 241 | Group=NUOL 242 | Disabled=1 243 | OnUpdateAction=[!SetOption Dep1 MeterStyle "Dep.Shape:S | Dep.ShapeNo:S"][!SetOption DepText1 Text "JaxCore // click here to install"][!SetOption Dep1 Leftmouseupaction """["#@#Actions\AHKv1.exe" "#@#Actions\Installer.ahk"][!SetOption DepText1 Text "JaxCore // download here if it doesn't automatically install"][!SetOption Dep1 Leftmouseupaction """["https://github.com/Jax-Core/JaxCore/releases/latest"][!UpdateMEter *][!Redraw]"""][!UpdateMEter *][!Redraw]"""][!UpdateMEter *][!Redraw] 244 | -------------------------------------------------------------------------------- /@Start/Logic.lua: -------------------------------------------------------------------------------- 1 | function check() 2 | mVer = SKIN:GetMeasure('mVer') 3 | CoreVer = tonumber(SKIN:GetVariable('Core.Ver', '00000')) 4 | ParsedVer = tonumber(mVer:GetStringValue()) 5 | ParsedVerFull = mVer:GetStringValue() 6 | SavePos = SKIN:GetVariable('@')..'Actions\\InstallData.ini' 7 | SaveLocation = SKIN:GetVariable('@')..'Actions' 8 | if ParsedVer == CoreVer then 9 | print('Up2date - '..ParsedVer..'=='..CoreVer) 10 | SKIN:Bang('!UpdateMeasure', 'JaxCoreYes') 11 | elseif ParsedVer <= CoreVer then 12 | print('Beta - '..ParsedVer..'<='..CoreVer) 13 | SKIN:Bang('!UpdateMeasure', 'JaxCoreYes') 14 | else 15 | print('Update required - '..ParsedVer..'>='..CoreVer) 16 | SKIN:Bang('!WriteKeyValue', 'Data', 'DownloadLink', 'https://github.com/Jax-Core/JaxCore/releases/download/v'..ParsedVerFull..'/JaxCore_v'..ParsedVerFull..'.rmskin', SavePos) 17 | SKIN:Bang('!WriteKeyValue', 'Data', 'SaveLocation', SaveLocation, SavePos) 18 | SKIN:Bang('!UpdateMeasure', 'JaxCoreNo') 19 | end 20 | end -------------------------------------------------------------------------------- /@Start/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Start/Logo.png -------------------------------------------------------------------------------- /@Start/Main.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | Update=-1 3 | 4 | DefaultKeepOnScreen=0 5 | 6 | [Variables] 7 | Parsed=0 8 | 9 | [CheckParsed] 10 | Measure=String 11 | String=#Parsed# 12 | IFmatch=0 13 | IfMatchaction=[!WriteKeyValue Variables Parsed 1][!Delay 1000][!Refresh] 14 | IfNotMatchAction=[!WriteKeyValue Variables Parsed 0] 15 | 16 | [GetStart] 17 | Measure=WebParser 18 | URL=https://raw.githubusercontent.com/Jax-Core/JaxCore/main/CoreShell/Start/Main.inc 19 | Debug=2 20 | Debug2File=DownloadFile\Parsed.inc 21 | 22 | [DummyString] 23 | Meter=String 24 | 25 | ; ---------------------------------------------------------------------------- ; 26 | ; Parsed ; 27 | ; ---------------------------------------------------------------------------- ; 28 | 29 | @includeParsed=DownloadFile\Parsed.inc 30 | -------------------------------------------------------------------------------- /@Start/Plainext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/@Start/Plainext.png -------------------------------------------------------------------------------- /Core/#page.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/#page.inc -------------------------------------------------------------------------------- /Core/Appearance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/Appearance.inc -------------------------------------------------------------------------------- /Core/ColorScheme.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/ColorScheme.inc -------------------------------------------------------------------------------- /Core/GenPlainextDrives.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/GenPlainextDrives.lua -------------------------------------------------------------------------------- /Core/General.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/General.inc -------------------------------------------------------------------------------- /Core/Help.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/Help.inc -------------------------------------------------------------------------------- /Core/Info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/Info.inc -------------------------------------------------------------------------------- /Core/Modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/Modules.inc -------------------------------------------------------------------------------- /Core/PatchNote/Main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Core/PatchNote/Main.inc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 JaxCore 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Main/@1/CPU.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/CPU.inc -------------------------------------------------------------------------------- /Main/@1/Drives.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/Drives.inc -------------------------------------------------------------------------------- /Main/@1/GPU.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/GPU.inc -------------------------------------------------------------------------------- /Main/@1/Misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/Misc.inc -------------------------------------------------------------------------------- /Main/@1/Name.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/Name.inc -------------------------------------------------------------------------------- /Main/@1/Overview.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/Overview.inc -------------------------------------------------------------------------------- /Main/@1/Prefix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/Prefix.inc -------------------------------------------------------------------------------- /Main/@1/RAM.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/RAM.inc -------------------------------------------------------------------------------- /Main/@1/Time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@1/Time.inc -------------------------------------------------------------------------------- /Main/@Measures/CPUTOP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@Measures/CPUTOP.inc -------------------------------------------------------------------------------- /Main/@Measures/GPUTOP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@Measures/GPUTOP.inc -------------------------------------------------------------------------------- /Main/@Measures/Mainm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@Measures/Mainm.inc -------------------------------------------------------------------------------- /Main/@Measures/RAMTOP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@Measures/RAMTOP.inc -------------------------------------------------------------------------------- /Main/@Styles/Default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@Styles/Default.inc -------------------------------------------------------------------------------- /Main/@Styles/MSDOS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/@Styles/MSDOS.inc -------------------------------------------------------------------------------- /Main/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/Plainext/c4963dadf04d0af9d3317fcb9c4284f6f776833f/Main/Main.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | Logo 6 | 7 | 8 |

Plainext

9 |

10 | A text-only system monitoring widget 11 |
12 | Help, Report Bugs & Request Features » 13 |

14 |
15 | 16 | 17 | 18 |

19 | Latest by date 20 | Discord 21 | Github 22 |

23 | 24 | 25 | 26 | ## About 27 | 28 | ![Plainext](https://raw.githubusercontent.com/Jax-Core/ReadME-Template/main/Resources/Splash/Plainext.png) 29 | 30 | 31 | **Plainext** is a widget that shows your system's stats in real time and is made with strings only. It is fully customizable and rescalable, and you can even choose from aligning left or right! 32 | 33 | 34 | 35 | ## Features 36 | * Two Alignment Options 37 | * Real-time System Monitor 38 | * Customizable Text 39 | * Fully scalable 40 | 41 | 42 | 43 | ## Getting Started 44 | 45 | ### Prerequisites 46 | - **Windows 10** or above 47 | > For older systems, **Powershell v5.1 or newer** is required. Upgrade powershell **[here](https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/install/installing-windows-powershell?view=powershell-7.2#upgrading-existing-windows-powershell)**! 48 | 49 | ### Installation 50 | Run the following command in Powershell to download the latest version of JaxCore. 51 | 52 | (To launch Powershell as an Admin: `Win + R` -> `powershell` -> Press `CTRL + SHIFT + ENTER` on your keyboard. Powershell can also be launched via Windows Search.) 53 | 54 | ``` 55 | iwr -useb "https://raw.githubusercontent.com/Jax-Core/JaxCore/master/CoreInstaller.ps1" | iex 56 | ``` 57 | 58 | > Alternatively you can download it from the [website](https://jax-core.github.io/) 59 | 60 | After you've proceeded through the welcome screen, select `Plainext` (might have to scroll down) and click `Install`. It will appear in the library page after that. 61 |
62 |
63 | 64 | 65 | 66 | ### Configuration 67 | Use the JaxCore menu to configure Plainext. 68 | For more information, visit [JaxCore's documentation](https://jaxcore.gitbook.io/core/) 69 |
70 |
71 | 72 | 73 | ## Need assistance? 74 | * Join the [CoreCommunity Discord Server](https://discord.gg/JmgehPSDD6) for help 75 | * or [Create an issue](https://github.com/Jax-Core/Plainext) 76 | 77 | ## Say Hi! 78 | * Follow me on 👨‍💻 [Github](https://github.com/EnhancedJax) and stay updated on new things that I make 79 | * You can also watch me on 🐦 [DeviantArt](https://www.deviantart.com/jaxoriginals) instead 80 | * Message me on 🗨️ [Discord](https://discord.gg/JmgehPSDD6) 81 | 82 | --- 83 | 84 |

85 | Made with ❤️ by Jax 86 |

87 | 88 |

89 | -------------------------------------------------------------------------------- /plainextworkspace.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": {} 8 | } --------------------------------------------------------------------------------