PyBites-Open-Source / pybites-carbon

MIT License
87 stars 11 forks source link

image not in downloads folder, does the -d switch still work? #11

Open bbelderbos opened 1 year ago

bbelderbos commented 1 year ago

Using standard alias I cannot find the carbon.png image in the target downloads folder ...

function carbp {
    (cd $HOME/code/pybites-carbon && ae && carbon -c -b \#A0D6B4 -w bw -d $HOME/Downloads)
}
bbelderbos commented 1 year ago

-d does work but only in interactive mode (-i)

Which makes it a bit hard to debug because without -i it will run headless so you cannot see what happens.

# no headless (-i), works: carbon.png in downloads folder
$ cd $HOME/code/pybites-carbon && ae && carbon -c -b \#A0D6B4 -w bw -d $HOME/Downloads -i

# headless, does not work: carbon.png not in downloads folder
$ cd $HOME/code/pybites-carbon && ae && carbon -c -b \#A0D6B4 -w bw -d $HOME/Downloads