diff --git a/scripts/qubes-a-small-but-handy-script-collection/README.md b/scripts/qubes-a-small-but-handy-script-collection/README.md new file mode 100644 index 0000000..a6511c6 --- /dev/null +++ b/scripts/qubes-a-small-but-handy-script-collection/README.md @@ -0,0 +1,2 @@ +### A small, but handy script collection ### +Here you may find all community scripts, which are too small, or too common to be listed on the script list. diff --git a/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-active-window.sh b/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-active-window.sh new file mode 100644 index 0000000..26ec609 --- /dev/null +++ b/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-active-window.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +#Author: +#Aekez @ Github + +#Disclaimer: +#Please use this script responsibly & at own risk. +#Please study the script, so that you know how it works. + +wmctrl -r :ACTIVE: -b toggle,fullscreen diff --git a/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-click-window.sh b/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-click-window.sh new file mode 100644 index 0000000..067c118 --- /dev/null +++ b/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-click-window.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +#Author: +#Aekez @ Github + +#Disclaimer: +#Please use this script responsibly & at own risk. +#Please study the script, so that you know how it works. + +wmctrl -r :SELECT: -b toggle,fullscreen + diff --git a/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-search-window.sh b/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-search-window.sh new file mode 100644 index 0000000..15afc3e --- /dev/null +++ b/scripts/qubes-a-small-but-handy-script-collection/qubes-toggle-fullscreen-search-window.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +#Author: +#Aekez @ Github + +#Disclaimer: +#Please use this script responsibly & at own risk. +#Please study the script, so that you know how it works. + +wid=$(xdotool search --name 'Mozilla Firefox') +wmctrl -i -r $wid -b toggle,fullscreen +