Created
April 27, 2019 22:26
-
-
Save sebastorama/64eef5e97306e72c88c943cd1e6f5523 to your computer and use it in GitHub Desktop.
Launch / Toggle Script Gnome / XFCE4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
###################################################################################################### | |
# This script will toggle minimize/activate first window with specified class | |
# If window not found program will be launched | |
# | |
# window class can be found with next programs: | |
# wmctrl -x -l | |
# xprop | |
# | |
# | |
# **IMPORTANT** | |
# No credit taken.......... Cannot read the original..... | |
# Found on http://blog.sokolov.me/2014/06/20/linuxx11-toggle-window-minimizemaximize/ | |
# in Russian :) but works when adjusting the wrapping. | |
# Assigned to meta-f in KDE plasma 5 | |
###################################################################################################### | |
NEEDED_WINDOW_CLASS="franz.Franz" | |
LAUNCH_PROGRAM="/usr/bin/franz" | |
###################################################################################################### | |
NEEDED_WINDOW_WINDOW_ID_HEX=`wmctrl -x -l | grep ${NEEDED_WINDOW_CLASS} | awk '{print $1}' | head -n 1` | |
NEEDED_WINDOW_WINDOW_ID_DEC=$((${NEEDED_WINDOW_WINDOW_ID_HEX})) | |
if [ -z "${NEEDED_WINDOW_WINDOW_ID_HEX}" ]; then | |
${LAUNCH_PROGRAM} | |
else | |
echo "Found window ID:${NEEDED_WINDOW_WINDOW_ID_DEC}(0x${NEEDED_WINDOW_WINDOW_ID_HEX})" | |
ACIVE_WINDOW_DEC=`xdotool getactivewindow` | |
if [ "${ACIVE_WINDOW_DEC}" == "${NEEDED_WINDOW_WINDOW_ID_DEC}" ]; then | |
xdotool windowminimize ${NEEDED_WINDOW_WINDOW_ID_DEC} | |
else | |
xdotool windowactivate ${NEEDED_WINDOW_WINDOW_ID_DEC} | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment