mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
import csv
|
|
|
|
qute = ""
|
|
rang = ""
|
|
bash = ""
|
|
#fish = ""
|
|
|
|
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()
|
|
#with open(".config/fish/config_base.fish") as fsh:
|
|
#fish+=fsh.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")
|
|
#fish+=("alias "+line[0]+"=\"cd "+line[1]+" ; ls -a\"\n")
|
|
#fish+=("abbr --add "+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")
|
|
#fish+=("alias "+line[0]+"=\"vim "+line[1]+"\"\n")
|
|
#fish+=("abbr --add "+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)
|
|
#with open(".config/fish/config.fish","w") as outfish:
|
|
#outfish.write(fish)
|