nix-system/home/bin/window_dir
2025-05-21 23:08:53 +02:00

6 lines
160 B
Bash
Executable file

#!/bin/sh
PID=$(hyprctl activewindow | grep pid | cut -d' ' -f 2)
PID=$(echo $(ps --ppid $PID -o pid | tail -n1))
cwd=$(readlink /proc/"$PID"/cwd)
echo "$cwd"