We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It's not entirely clear how you can use the GUI to delete the preset of the window arrangement
The text was updated successfully, but these errors were encountered:
I don't think it's currently possible.
Here's a workaround using jq:
cd $HOME/.config/gSnap jq '.definitions |= (map(select(.name != "LAYOUT_NAME_HERE")) | sort_by(.name))' layouts.json > temp.json && mv temp.json layouts.json
You have to disable/enable the extensions afterwards or just reload X (alt-F2 + 'r' + enter).
You can add it as a function in your .bashrc so it's easy to call:
.bashrc
function gsnap_remove_layout { GSNAP_LAYOUT_NAME=$1 jq ".definitions |= (map(select(.name != \"$GSNAP_LAYOUT_NAME\")) | sort_by(.name))" $HOME/.config/gSnap/layouts.json > /tmp/gSnap-layouts.temp && mv /tmp/gSnap-layouts.temp $HOME/.config/gSnap/layouts.json }
Sorry, something went wrong.
No branches or pull requests
It's not entirely clear how you can use the GUI to delete the preset of the window arrangement
The text was updated successfully, but these errors were encountered: