eromatiya / rofi-spotlight

Spotlight-like Rofi
MIT License
201 stars 7 forks source link

Let system decide python executable #5

Closed smoove closed 4 years ago

smoove commented 4 years ago

Problem: The current way the python script is called does not work on systems where the 'python' binary is still python 2.x

Solution: The shebang in web-search.py (#!/usr/bin/env python3) is enough to let the system know it is a python script and will automatically use python 3.x if available.

eromatiya commented 4 years ago

Thanks for this!