diff options
| author | alex <alex@pdp7.net> | 2024-10-05 12:05:14 +0200 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2024-10-05 12:06:46 +0200 |
| commit | d976ae89929793a9dd8c3766b11f7e5b08f7acba (patch) | |
| tree | 180d9d90b262ec2a9baa2fbc38322cb286bd6e23 /scripts/p7s/paperwm.py | |
| parent | e039dbcf0ffe6c8ca0154b73861dabc060be2362 (diff) | |
Automate PaperWM setup
Diffstat (limited to 'scripts/p7s/paperwm.py')
| -rw-r--r-- | scripts/p7s/paperwm.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/p7s/paperwm.py b/scripts/p7s/paperwm.py new file mode 100644 index 00000000..04a64f0a --- /dev/null +++ b/scripts/p7s/paperwm.py @@ -0,0 +1,7 @@ +import pathlib +import subprocess + + +def setup_paperwm(): + install = (pathlib.Path(__file__).parent.parent / "PaperWM" / "install.sh") + subprocess.run([install], check=True) |
