mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2025-04-04 10:32:06 +02:00
7 lines
142 B
Bash
Executable File
7 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
dir=`dirname $0`
|
|
python3 $dir/workspaces.py
|
|
tail -F -n1 ~/.cache/workspaces | while read -r; do
|
|
python3 $dir/workspaces.py
|
|
done
|