voidrice/.config/Scripts/shortcuts.py
2017-06-02 15:49:10 -04:00

42 lines
1.5 KiB
Python

import csv
qute = ""
rang = ""
bash = ""
with open(".config/qutebrowser/keys.conf.base") as qb:
qute+=qb.read()
with open(".config/ranger/rc.conf.base") as rg:
rang+=rg.read()
with open(".config/Scripts/bashrc") as bsh:
bash+=bsh.read()
#First we open the list of folder shortcuts and go down each line adding each in the required syntax to each of the three configs:
with open(".config/Scripts/folders") as fold:
for line in csv.reader(fold, dialect="excel-tab"):
#Adds the qutebrowser downloads commands:
qute+="set storage download-directory "+line[1]+" ;; hint links download\n\t;"+line[0]+"\n"
#Adds the ranger go, tab, move and yank commands:
rang+=("map g"+line[0]+" cd "+line[1]+"\n")
rang+=("map t"+line[0]+" tab_new "+line[1]+"\n")
rang+=("map m"+line[0]+" shell mv %s "+line[1]+"\n")
rang+=("map Y"+line[0]+" shell cp -r %s "+line[1]+"\n")
#Adds the bash shortcuts:
bash+=("alias "+line[0]+"=\"cd "+line[1]+" && ls -a\"\n")
#Goes thru the config file file and adds the shortcuts to both bash and ranger.
with open(".config/Scripts/configs") as conf:
for line in csv.reader(conf, dialect="excel-tab"):
bash+=("alias "+line[0]+"=\"vim "+line[1]+"\"\n")
rang+=("map "+line[0]+" shell vim "+line[1]+"\n")
with open(".config/ranger/rc.conf", "w") as outrang:
outrang.write(rang)
with open(".config/qutebrowser/keys.conf","w") as outqb:
outqb.write(qute)
with open(".bashrc","w") as outbash:
outbash.write(bash)