From cf30deb40455c090bb7e7ed5d5433f8951dc4a6e Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Thu, 26 Aug 2021 20:03:19 +0530 Subject: Added script to open alacritty in same directory, and set its keybinding --- .scripts/open_terminal | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 .scripts/open_terminal (limited to '.scripts') diff --git a/.scripts/open_terminal b/.scripts/open_terminal new file mode 100755 index 0000000..62ac7cc --- /dev/null +++ b/.scripts/open_terminal @@ -0,0 +1,27 @@ +#!/bin/sh + +ACTIVE_WINDOW=$(xdotool getactivewindow) +ACTIVE_WM_CLASS=$(xprop -id $ACTIVE_WINDOW | grep WM_CLASS) +if [[ $ACTIVE_WM_CLASS == *"Alacritty"* ]] +then + # Get PID. If _NET_WM_PID isn't set, bail. + PID=$(xprop -id $ACTIVE_WINDOW | grep _NET_WM_PID | grep -oP "\d+") + if [[ "$PID" == "" ]] + then + alacritty + fi + # Get first child of terminal + CHILD_PID=$(pgrep -P $PID) + if [[ "$PID" == "" ]] + then + alacritty + fi + # Get current directory of child. The first child should be the shell. + pushd "/proc/${CHILD_PID}/cwd" + SHELL_CWD=$(pwd -P) + popd + # Start alacritty with the working directory + alacritty --working-directory $SHELL_CWD +else + alacritty +fi -- cgit v1.2.3