Action | Linux | Windows |
---|---|---|
switch fullscreen mode | Ctrl +f |
Alt +f |
resize window to 1:1 (pixel-perfect) | Ctrl +g |
Alt +g |
resize window to remove black borders | Ctrl +x | Double-click¹ |
Alt +w | Double-click¹ |
click on HOME |
Ctrl +h | Middle-click |
Alt +h | Middle-click |
click on BACK |
Ctrl +b | Right-click² |
Alt +b | esc | Right-click² |
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
// 1. Import the following into Google Apps Scripts | |
// 2. Select your desired execution interval | |
function getItemsOlderThan(numDays) { | |
const threshold = new Date().getTime() - 3600 * 1000 * 24 * numDays; | |
const cutoffDate = new Date(threshold).toISOString(); | |
const query = `(modifiedDate < "${cutoffDate}") and ('me' in owners)`; | |
const response = Drive.Files.list({ q: query }); |
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
/** | |
* @license | |
* Copyright 2018, Google, Inc. | |
* Licensed under the Apache License, Version 2.0 (the 'License'); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
Open a Terminal and try the next commands : | |
dbus-send --session --dest=org.pantheon.gala --print-reply /org/pantheon/gala org.pantheon.gala.PerformAction int32:1 | |
Luna : Workspace Overview ( keep Enter pressed ), Freya : Multitasking View | |
dbus-send --session --dest=org.pantheon.gala --print-reply /org/pantheon/gala org.pantheon.gala.PerformAction int32:2 | |
Terminal maximizes | |
dbus-send --session --dest=org.pantheon.gala --print-reply /org/pantheon/gala org.pantheon.gala.PerformAction int32:3 | |
Terminal minimizes |
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
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### |