merger of bin

This commit is contained in:
Luke Smith
2019-11-23 16:16:30 -05:00
parent 85d353d796
commit a5e66ac4f4
14 changed files with 160 additions and 96 deletions

19
.local/bin/i3cmds/ddspawn Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env sh
# Toggle floating dropdown terminal in i3, or start if non-existing.
# $1 is the script run in the terminal.
# All other args are terminal settings.
# Terminal names are in dropdown_* to allow easily setting i3 settings.
[ -z "$1" ] && exit
script=$1
shift
if xwininfo -tree -root | grep "(\"dropdown_$script\" ";
then
echo "Window detected."
i3 "[instance=\"dropdown_$script\"] scratchpad show; [instance=\"dropdown_$script\"] move position center"
else
echo "Window not detected... spawning."
i3 "exec --no-startup-id $TERMINAL -n dropdown_$script $@ -e $script"
fi