2024-08-07 22:46:13 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from getopt import getopt
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from common.dump import dump
|
|
|
|
from common.sync import sync
|
2024-08-08 12:28:10 +02:00
|
|
|
from common.util import expand
|
2024-08-07 22:46:13 +02:00
|
|
|
|
2024-08-08 12:28:10 +02:00
|
|
|
stuff: list[str] = [
|
2024-08-10 22:32:12 +02:00
|
|
|
*expand("~/.config/{fish,kitty,nvim,pipewire,sway,swaylock,xdg-desktop-portal,zed}/**"),
|
2024-08-09 14:47:04 +02:00
|
|
|
"~/.icons/**",
|
2024-08-08 12:28:10 +02:00
|
|
|
*expand("~/.local/bin/{yarn}"),
|
2024-08-09 14:47:04 +02:00
|
|
|
"~/.profile",
|
2024-08-08 12:28:10 +02:00
|
|
|
]
|
2024-08-07 22:46:13 +02:00
|
|
|
|
|
|
|
options, _ = getopt(sys.argv[1:], "ds", ["dump", "sync"])
|
|
|
|
|
|
|
|
for option, _ in options:
|
|
|
|
if option in ("-d", "--dump"):
|
|
|
|
dump(stuff)
|
|
|
|
break
|
|
|
|
|
|
|
|
if option in ("-s", "--sync"):
|
|
|
|
sync(stuff)
|
|
|
|
break
|
|
|
|
|
|
|
|
print("Usage: ./goog [-d | --dump] [-s | --sync]\n")
|
|
|
|
print("A simple tool for dumping dotfiles and syncing them")
|
|
|
|
exit(1)
|