Skip to content

Instantly share code, notes, and snippets.

@michel-zimmer
Created August 12, 2014 20:37
Show Gist options
  • Save michel-zimmer/0e17c3be4c20b4dc51c6 to your computer and use it in GitHub Desktop.
Save michel-zimmer/0e17c3be4c20b4dc51c6 to your computer and use it in GitHub Desktop.
Easily set individual names for workspaces in GNOME
#!/bin/sh
TMP=$( mktemp )
echo "$( gsettings 'get' 'org.gnome.desktop.wm.preferences' 'workspace-names' )" > $TMP
editor $TMP
gsettings 'set' 'org.gnome.desktop.wm.preferences' 'workspace-names' "$( cat $TMP )"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment