Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option for unanimated app drawer #68

Merged
merged 1 commit into from
Jul 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions [email protected]/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ const TouchpadGestureAction = new Lang.Class({
case 9:
this._sendKeyEvent(Clutter.KEY_Alt_L, Clutter.KEY_Left);
break;
case 10:
let selector = Main.overview.viewSelector;
selector._showAppsButton.checked ? Main.overview.toggle() : selector._toggleAppsPage();
default:
break;
}
Expand Down
3 changes: 2 additions & 1 deletion [email protected]/prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ const ExtendedGesturesSettingsWidget = new GObject.Class({
'Next Workspace',
'Previous Workspace',
'Go Forward',
'Go Back'
'Go Back',
'Show App Drawer (unanimated)'
];

// Disable four finger options for now :(
Expand Down
Binary file modified [email protected]/schemas/gschemas.compiled
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<value value="7" nick="previous-workspace"/>
<value value="8" nick="go-forward"/>
<value value="9" nick="go-back"/>
<value value="10" nick="app-drawer-unanimated"/>
</enum>
<schema id="org.gnome.shell.extensions.extendedgestures" path="/org/gnome/shell/extensions/extendedgestures/">
<key name="left-three-swipes" type="b">
Expand Down