Skip to content

Update Discord theme classes, October 2023 and March 2024

License

Notifications You must be signed in to change notification settings

Saltssaumure/ClassUpdate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ClassUpdate

Update class names of all themes in a folder.

Updating only a single file? Use SyndiShanX's online tool instead: https://syndishanx.github.io/Website/Update_Classes.html

Credits

Setup and usage

Requirements

Usage

⚠ Make a backup of your themes before using this script.

  1. Open terminal in your client mod's directory
  2. Download this tool
    • git clone https://github.com/Saltssaumure/ClassUpdate
  3. Edit config.ini if desired
    • See section below for detailed info
  4. Run the script
    • python ./ClassUpdate/replace.py

Example

Files marked with will be updated by the script if using the default config.

WorseDiscord/
├── themes/
│   ├── CoolTheme.theme.css ↻
│   ├── DarkMode2.theme.css ↻
│   ├── another.theme.css   ↻
│   └── testfolder/
│       ├── test.theme.css  ↻
│       ├── something.css   ↻
│       └── wargh.txt
├── MyCoolWebsite/
│   ├── site.html
│   └── main.css
└── ClassUpdate (this tool)/
    ├── replace.py
    └── README.md

Config

The config for this script is stored in config.ini and can be edited with your favourite text editor (eg. Notepad++).

Variables

ThemeDirectory

  • The location of the themes directory to update.
  • A path relative to the ClassUpdate directory.
  • Default: themes

FileExtension

  • The file extension of the files to update.
  • Default: css

UseLocalDiff

  • Whether or not to use a local (instead of online) changes file.
  • Use yes or no.
  • Default: no

DiffLocation

  • The location of the changes file.
    • If using local diff, a path relative to the replace.py file.
    • If using online diff, a full URL.
  • Default: https://raw.githubusercontent.com/SyndiShanX/Update-Classes/main/Changes.txt

Creating a new profile

The config.ini has two profiles provided, DEFAULT and local. You can also create new profiles to store various configs.

  1. Add a section to config.ini starting with the name of the profile in square brackets:
    [UpdateScss]
  2. Underneath, copy and edit variables you wish to change from the DEFAULT profile. Any missing variables will inherit its value from DEFAULT automatically. This example profile will update scss files in MyThemes directory using the online changes file at https://raw.githubusercontent.com/SyndiShanX/Update-Classes/main/Changes.txt:
    [UpdateScss]
    ThemeDirectory: MyThemes
    FileExtension: scss
  3. Save your changes before running replace.py. Enter your profile name when prompted, without square brackets.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

  • TL;DR;NAL: Do whatever you want with this, as long as you allow others to do the same.

Questions or suggestions?