Moving away from pypi

This commit is contained in:
CronyAkatsuki 2021-07-09 22:10:10 +02:00
parent f99d1bc4b4
commit 346bf9190f
9 changed files with 368 additions and 427 deletions

8
print_fzf.py Normal file
View file

@ -0,0 +1,8 @@
import os,sys
#just a quick script to print the fzf.txt file content
dn = os.path.dirname(os.path.realpath(__file__))
fzf_file = open(dn + "/fzf.txt").read()
print(fzf_file)
sys.exit()