nix-system/bin/window_dir
2024-02-27 19:47:18 +01: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"