dmenu-mac icon indicating copy to clipboard operation
dmenu-mac copied to clipboard

Using Python2

Open dennisschneider-ml opened this issue 2 years ago • 0 comments

Please upgrade to using python3. It is easily done by changing the following line from "scripts/dmenu-mac":

function realpath() { python -c "import os,sys; print(os.path.realpath(sys.argv[1]))" "$0"; }

to

function realpath() { python3 -c "import os,sys; print(os.path.realpath(sys.argv[1]))" "$0"; }

(Only change: python -> python3)

As far as I can tell it directly works.

dennisschneider-ml avatar Mar 23 '22 14:03 dennisschneider-ml