deprecate unused scripts

Signed-off-by: Ferit Yiğit BALABAN <fyb@fybx.dev>
This commit is contained in:
yigid balaban 2024-01-15 22:32:23 +03:00
parent b4565d76bb
commit 1dddc37e34
Signed by: fyb
GPG Key ID: E21FEB2C244CB7EB
12 changed files with 22 additions and 0 deletions

View File

@ -1,2 +1,3 @@
#!/usr/bin/env bash
cliphist list | wofi --show dmenu | cliphist decode | wl-copy

View File

@ -0,0 +1,21 @@
import os
import git
from datetime import datetime
folder_path = "/home/ferit/shoka/400-499 vault"
if not os.path.exists(os.path.join(folder_path, ".git")):
repo = git.Repo.init(folder_path)
else:
repo = git.Repo(folder_path)
os.chdir(folder_path)
repo.remotes.origin.pull()
repo.index.add("*")
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
repo.index.commit(f"{timestamp} ewdows usual")
repo.remote("origin").push()

View File