mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-14 13:09:37 +01: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
|