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

Feature: move space to other monitors #825

Merged
merged 9 commits into from
Apr 15, 2024
Prev Previous commit
Changed keybinds to Ctrl+Alt+Shift+left/right/up/down to
avoid commonly used keybinds (in apps like Gimp etc.).
  • Loading branch information
jtaala committed Apr 13, 2024
commit 492dce872bb7045c1425cbaea40bef57538352bf
Binary file modified schemas/gschemas.compiled
Binary file not shown.
8 changes: 4 additions & 4 deletions schemas/org.gnome.shell.extensions.paperwm.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,19 +109,19 @@
</key>

<key type="as" name="move-space-monitor-right">
<default><![CDATA[['<Ctrl><Alt>Right']]]></default>
<default><![CDATA[['<Ctrl><Alt><Shift>Right']]]></default>
<summary>Move workspace to monitor on the right</summary>
</key>
<key type="as" name="move-space-monitor-left">
<default><![CDATA[['<Ctrl><Alt>Left']]]></default>
<default><![CDATA[['<Ctrl><Alt><Shift>Left']]]></default>
<summary>Move workspace to monitor on the left</summary>
</key>
<key type="as" name="move-space-monitor-above">
<default><![CDATA[['<Ctrl><Alt>Up']]]></default>
<default><![CDATA[['<Ctrl><Alt><Shift>Up']]]></default>
<summary>Move workspace to monitor above</summary>
</key>
<key type="as" name="move-space-monitor-below">
<default><![CDATA[['<Ctrl><Alt>Down']]]></default>
<default><![CDATA[['<Ctrl><Alt><Shift>Down']]]></default>
<summary>Move workspace to monitor below</summary>
</key>

Expand Down