Commit 9f88d10 1 parent 45b1375 commit 9f88d10 Copy full SHA for 9f88d10
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
# reddytt.py
14
14
# https://github.com/johanbluecreek/reddytt
15
15
#
16
- __version__ = "1.4.7 "
16
+ __version__ = "1.4.8 "
17
17
user_agent = "Reddytt v{}" .format (__version__ )
18
18
#
19
19
################################################################################
@@ -78,7 +78,7 @@ def create_input(work_dir):
78
78
with open (input_file , 'w' ) as f :
79
79
f .write ('> quit 0\n ' )
80
80
f .write ('q quit 4\n ' )
81
- f .write ('R run "/bin/bash" "-c" "echo \\ \" ${path}\\ \" >> ~/.reddytt/remember"\n ' )
81
+ f .write ('R run "/bin/bash" "-c" "echo \\ \" ${title}: ${ path}\\ \" >> ~/.reddytt/remember"\n ' )
82
82
f .write ('i show-text "${title}"\n ' )
83
83
f .write ('Ctrl+o run "/bin/bash" "-c" "xdg-open \\ \" ${path}\\ \" "\n ' )
84
84
@@ -391,7 +391,7 @@ def reqlinks(link):
391
391
'mpv' ,
392
392
link [0 ],
393
393
'--input-conf=%s' % tmp_input_file ,
394
- '--title=\" %s \" ' % link [1 ]
394
+ '--title=%s ' % link [1 ]. replace ( '"' , "'" )
395
395
] + args .mpv
396
396
, shell = False )
397
397
p .communicate ()
You can’t perform that action at this time.
0 commit comments