Created
September 19, 2023 14:58
-
-
Save kzndotsh/2ce12404f42ca6490f1e28b3edc374e9 to your computer and use it in GitHub Desktop.
dropdown-terminal.sh
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 | |
# Controls a dropdown terminal for use in i3wm | |
DISPLAY_WIDTH=1920 | |
DISPLAY_HEIGHT=1080 # May be usefull... | |
TERMINAL_WIDTH=900 | |
TERMINAL_HEIGHT=400 | |
TERMINAL_X=$(( (DISPLAY_WIDTH - TERMINAL_WIDTH)/2 )) | |
TERMINAL_Y=500 | |
TERMINAL=alacritty # Change this to whatever terminal emulator you want | |
# Temporary file to record the terminal state | |
TERMINAL_STATE=/tmp/dropdown_terminal_state | |
# Adjust the sleep time and step size as necessary to make the animation smooth | |
STEP_SIZE=10 | |
STEP_DIRECTION_OP="up" # Swap these two to reverse direction. | |
STEP_DIRECTION_CL="down" | |
SLEEP_TIME=0.0002 | |
usage() { | |
echo "Open/closes a dropdown terminal" | |
echo "Usage: ./dropdown_terminal <start|open|close|toggle>" | |
} | |
term_launch() { | |
$TERMINAL & | |
local term_pid=$! | |
# Wait for terminal to open | |
xdotool search --sync --pid $term_pid > /dev/null | |
i3-msg -q mark dropdown # Mark the terminal so we can identify it | |
i3-msg -q [con_mark=dropdown] move scratchpad | |
echo "closed" > $TERMINAL_STATE | |
} | |
term_open() { | |
if [ "$(cat $TERMINAL_STATE)" == "closed" ]; then | |
echo "animating" > $TERMINAL_STATE | |
i3-msg -q [con_mark=dropdown] scratchpad show | |
i3-msg -q resize set $TERMINAL_WIDTH $TERMINAL_HEIGHT | |
i3-msg -q move absolute position $TERMINAL_X $TERMINAL_Y | |
i3-msg -q move $STEP_DIRECTION_CL $(( TERMINAL_HEIGHT - 1 )) | |
for i in `seq 1 $STEP_SIZE $TERMINAL_HEIGHT`; do | |
i3-msg -q [con_mark=dropdown] move $STEP_DIRECTION_OP $STEP_SIZE | |
sleep $SLEEP_TIME | |
done | |
echo "open" > $TERMINAL_STATE | |
fi | |
} | |
term_close() { | |
if [ "$(cat $TERMINAL_STATE)" == "open" ]; then | |
echo "animating" > $TERMINAL_STATE | |
i3-msg -q [con_mark=dropdown] focus | |
for i in `seq 1 $STEP_SIZE $TERMINAL_HEIGHT`; do | |
i3-msg -q [con_mark=dropdown] move $STEP_DIRECTION_CL $STEP_SIZE | |
sleep $SLEEP_TIME | |
done | |
i3-msg -q [con_mark=dropdown] scratchpad show | |
echo "closed" > $TERMINAL_STATE | |
fi | |
} | |
term_toggle() { | |
case "$(cat $TERMINAL_STATE)" in | |
open) term_close;; | |
closed) term_open;; | |
*) ;; | |
esac | |
} | |
if [ $# != 1 ]; then | |
usage | |
exit 1 | |
else | |
case $1 in | |
start) term_launch;; | |
open) term_open;; | |
close) term_close;; | |
toggle) term_toggle;; | |
*) usage; exit 1;; | |
esac | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment