mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-15 17:43:08 -04:00
feat(settings): Add the ability to make the window transparent (#457)
This commit is contained in:
parent
6e22a96d9e
commit
072ad3d7e6
3 changed files with 13 additions and 0 deletions
|
@ -32,6 +32,7 @@ export interface Settings {
|
|||
enableReactDevtools: boolean;
|
||||
themeLinks: string[];
|
||||
frameless: boolean;
|
||||
transparent: boolean;
|
||||
winCtrlQ: boolean;
|
||||
plugins: {
|
||||
[plugin: string]: {
|
||||
|
@ -48,6 +49,7 @@ const DefaultSettings: Settings = {
|
|||
themeLinks: [],
|
||||
enableReactDevtools: false,
|
||||
frameless: false,
|
||||
transparent: false,
|
||||
winCtrlQ: false,
|
||||
plugins: {}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue