summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-12-09 15:26:40 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-12-09 15:26:40 -0500
commita3e25517daaf4869e749f6733d4a33fcf88a5fbc (patch)
treebb5670bcfe8f060e4d6598d137efe64a5ee07ddb /.scripts
parent63f93ae98594681a1e128a8ceb5b02f3f39ea2de (diff)
downloadeibhear-a3e25517daaf4869e749f6733d4a33fcf88a5fbc.tar.gz
eibhear-a3e25517daaf4869e749f6733d4a33fcf88a5fbc.tar.zst
eibhear-a3e25517daaf4869e749f6733d4a33fcf88a5fbc.zip
samedir rm'd xdpyinfo dependency
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/i3cmds/samedir30
1 files changed, 4 insertions, 26 deletions
diff --git a/.scripts/i3cmds/samedir b/.scripts/i3cmds/samedir
index 7d65838..88845fc 100755
--- a/.scripts/i3cmds/samedir
+++ b/.scripts/i3cmds/samedir
@@ -1,27 +1,5 @@
#!/bin/sh
-# i3 thread: https://faq.i3wm.org/question/150/how-to-launch-a-terminal-from-here/?answer=152#post-id-152
-
-CMD=$TERMINAL
-CWD=''
-
-# Get window ID
-ID=$(xdpyinfo | grep focus | cut -f4 -d " ")
-
-# Get PID of process whose window this is
-PID=$(xprop -id "$ID" | grep -m 1 PID | cut -d " " -f 3)
-
-# Get last child process (shell, vim, etc)
-if [ -n "$PID" ]; then
- TREE=$(pstree -lpA "$PID" | tail -n 1)
- PID=$(echo "$TREE" | awk -F'---' '{print $NF}' | sed -re 's/[^0-9]//g')
-
- # If we find the working directory, run the command in that directory
- if [ -e "/proc/$PID/cwd" ]; then
- CWD=$(readlink /proc/"$PID"/cwd)
- fi
-fi
-if [ -n "$CWD" ]; then
- cd "$CWD" && "$CMD"
-else
- "$CMD"
-fi
+PID=$(xprop -id "$(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}')" | grep -m 1 PID | cut -d " " -f 3)
+PID=$(echo "$(pstree -lpA "$PID" | tail -n 1)" | awk -F'---' '{print $NF}' | sed -re 's/[^0-9]//g')
+cd "$(readlink /proc/"$PID"/cwd)"
+"$TERMINAL"