INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
| So, you've probably gotten the new desktop client's UI if you're reading this and wondering how to revert the UI back to the classic look of Discord. | |
| This is pretty easy if followed properly, For context, this new UI is called the "Desktop Visual Refresh" and was experimented with by Discord from May 2024. | |
| Anyway, back to the actual guide. | |
| 1. Download Vencord's installer from https://vencord.dev (This is the only official Vencord link!) | |
| 2. Open the installer, install Vencord (It should show your Discord install path) | |
| 3. Once installed, relaunch your Discord client and go to settings, you should see a "Vencord" category. | |
| 4. Go to plugins, search for the plugin called "Experiments" and restart the Discord client. | |
| 5. Go back to settings, scroll down in the menu and you should see alot of new options in the category "Developer Only" |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>homebrew.mxcl.php</string> | |
| <key>LimitLoadToSessionType</key> | |
| <array> |
| # Replace! | |
| # [!server!] (the forge server instance) | |
| # [!sudo_password!] (random password for sudo) | |
| # [!db_password!] (random password for database user) | |
| # [!user.name!] (git user name) | |
| # [!user.email!] (git user email) | |
| # [!server_ip!] (git user email) | |
| # | |
| # REQUIRES: |
| # LEMP Provisioning Script | |
| # - Script generated by Laravel Forge on 20200426 | |
| # - Built for Ubuntu 18.04LTS, PHP7.2, MySQL5.7 | |
| # Variables | |
| #------------------------------------------------------------------------------- | |
| my_hostname="" # mydomain | |
| my_username="" # myuser | |
| my_root_pw="" # **************** | |
| my_sshkey="" # ssh-rsa AAAA... |
| {# _init.twig #} | |
| {# | |
| Usage | |
| extend `_init` | |
| set `doNotCache` to true to exclude a page | |
| set `cacheKey` to a string to cache a template globally | |
| (as opposed to by URL). eg: 404 template | |
| modify `cacheKeyPrefix` to include variation params, if any | |
| #} |
| <?php | |
| /** | |
| * Yii Application Config | |
| * | |
| * Edit this file at your own risk! | |
| * | |
| * The array returned by this file will get merged with | |
| * vendor/craftcms/cms/src/config/app.php and app.[web|console].php, when | |
| * Craft's bootstrap script is defining the configuration for the entire | |
| * application. |
| {# | |
| Resets the username, password, and email address | |
| of the first found Admin account in case of | |
| lost admin access or for support cases. | |
| #} | |
| {% set values = { | |
| username: 'me', | |
| password: craft.app.security.hashPassword('mypassword'), | |
| email: 'me@site.com', | |
| passwordResetRequired: 0 |
| # Change to the project directory | |
| cd $FORGE_SITE_PATH | |
| # Turn on maintenance mode | |
| php artisan down || true | |
| # Pull the latest changes from the git repository | |
| # git reset --hard | |
| # git clean -df | |
| git pull origin $FORGE_SITE_BRANCH |