Inspired by https://github.com/samuelthomas2774/bd-hide-sidebars
A BetterDiscord theme that collapses the Discord sidebars and tweaks large elements when your window is too small. Hover over the collapsed area to access the sidebars.
Install BetterDiscord, then import the following file as a theme. (You can download the file by clicking Raw
, and then right-click and select Save as...
)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Type definitions for the Elevator Saga programming game at https://play.elevatorsaga.com/ | |
*/ | |
declare module 'elevator-saga' { | |
export interface ElevatorEvents { | |
/** | |
* Triggered when the elevator has completed all its tasks and is not doing anything. | |
*/ | |
(event: 'idle', fn: () => void): void; | |
/** |