mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
21 lines
682 B
Python
Executable File
21 lines
682 B
Python
Executable File
#!/usr/bin/python
|
|
#
|
|
# Put this in your ~/.Xdefaults:
|
|
#
|
|
# URxvt.perl-ext-common: default,matcher
|
|
# URxvt.url-launcher: /home/dabreegster/abstreet/clickable_links.py
|
|
# URxvt.matcher.button: 1
|
|
|
|
import os
|
|
import sys
|
|
|
|
arg = sys.argv[1]
|
|
if arg.startswith('http://most/'):
|
|
os.execvp('urxvt', ['urxvt', '-e', 'sh', '-c', 'most ' + arg[len('http://most/'):]])
|
|
if arg.startswith('http://tail/'):
|
|
os.execvp('urxvt', ['urxvt', '-e', 'sh', '-c', 'tail -f ' + arg[len('http://tail/'):]])
|
|
elif arg.startswith('http://ui/'):
|
|
os.execvp('urxvt', ['urxvt', '-e', 'sh', '-c', 'cd ~/abstreet/editor; cargo run ' + arg[len('http://ui/'):]])
|
|
else:
|
|
os.execvp('xdg-open', ['xdg-open', arg])
|