-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update back-to-monitor@nathan818fr (#483)
- Loading branch information
1 parent
8172ed0
commit e287b76
Showing
24 changed files
with
591 additions
and
316 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/node_modules |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
trailingComma: es5 | ||
printWidth: 120 | ||
tabWidth: 4 | ||
semi: true | ||
singleQuote: true | ||
bracketSpacing: false | ||
overrides: | ||
- files: ['*.json'] | ||
options: {tabWidth: 2} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ A Cinnamon extension to move windows back to their original location when (re-)c | |
|
||
![Screenshot](./screenshot.png?raw=true) | ||
|
||
> **IMPORTANT: Cinnamon 5.4+ natively provides the features of this extension.** | ||
## Features | ||
|
||
- Remember window locations based on monitor connection (can be switched on/off) | ||
|
@@ -27,7 +25,7 @@ To download the source and install it, execute the following as a normal user: | |
```bash | ||
git clone [email protected]:nathan818fr/cinnamon-back-to-monitor.git | ||
cd cinnamon-back-to-monitor | ||
cinnamon-install-spice extension files/back-to-monitor@nathan818fr | ||
npm run install-extension | ||
``` | ||
|
||
## Issues | ||
|
@@ -48,8 +46,10 @@ Therefore, tiled/snapped windows can only be restored to the predefined dimensio | |
|
||
### • Fullscreen windows are not restored | ||
|
||
The required APIs are not exposed to cinnamon extensions.<br/> | ||
Therefore, fullscreen windows are ignored by this extension. | ||
Before Cinnamon 5.4, the required APIs were not exposed to cinnamon extensions.<br/> | ||
In this case, the fullscreen windows will be ignored. | ||
|
||
With Cinnamon 5.4 and above, the fullscreen windows will be restored correctly! | ||
|
||
### • The "Always on Visible Workspace" option is not restored | ||
|
||
|
29 changes: 0 additions & 29 deletions
29
back-to-monitor@nathan818fr/files/back-to-monitor@nathan818fr/4.0/src/utils.js
This file was deleted.
Oops, something went wrong.
199 changes: 0 additions & 199 deletions
199
back-to-monitor@nathan818fr/files/back-to-monitor@nathan818fr/4.0/src/window-utils.js
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
back-to-monitor@nathan818fr/files/back-to-monitor@nathan818fr/5.4/extension.js
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
back-to-monitor@nathan818fr/files/back-to-monitor@nathan818fr/5.4/settings-schema.json
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
"name": "Back to Monitor", | ||
"description": "Move windows back to their original location when (re-)connecting a monitor.", | ||
"author": "Nathan Poirier <[email protected]>", | ||
"cinnamon-version": ["4.0", "4.2", "4.4", "4.6", "4.8", "5.0", "5.2"], | ||
"multiversion": true, | ||
"cinnamon-version": ["4.0", "4.2", "4.4", "4.6", "4.8", "5.0", "5.2", "5.4", "5.6"], | ||
"url": "https://github.com/linuxmint/cinnamon-spices-extensions/tree/master/back-to-monitor%40nathan818fr" | ||
} |
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
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
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
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
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
Oops, something went wrong.