Organize scripts folder

This commit is contained in:
Marty Oehme 2019-12-03 23:12:44 +01:00
parent bf7d0fddd8
commit 18ba1fe6f0
8 changed files with 66 additions and 0 deletions

12
.local/bin/vifm/ueberzug Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'ueberzug==18.1.5','console_scripts','ueberzug'
__requires__ = 'ueberzug==18.1.5'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('ueberzug==18.1.5', 'console_scripts', 'ueberzug')()
)