Открыть svg в chrome на Mac в vifm

7 июля 2024. Комментарии .
  1. Чтобы открыть file.svg в новом окне в независимости от того, был ли браузер уже запущен или нет:
1
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --new-window --disable-session-crashed-bubble --disable-infobars --app=file:/path/to/file.svg 
  1. Чтобы применить к файлу свои css-стили, можно поступить так. Открывать на самом деле будем template.html, а при помощи sed будет происходить замена шаблона в файле на путь до svg файла. Этот файл добавляет рамку вокруг svg изображения.
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YOUR_SVG_FILE.svg</title>
<style>
.svg-container {
display: inline-block;
border: 1px solid black;
}
</style>
</head>
<body>
<div class="svg-container">
<object id="svg-object" type="image/svg+xml" data="YOUR_SVG_FILE.svg"></object>
</div>
</body>
</html>
  1. Теперь можно запустить chrome (замените /path/to/file.svg на настоящий путь):
1
cp /path/to/template.html /tmp/temp_svg.html && sed -i '' -e 's#YOUR_SVG_FILE.svg#/path/to/file.svg#g' /tmp/temp_svg.html && "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --new-window --disable-session-crashed-bubble --disable-infobars --app=file:///tmp/temp_svg.htm
  1. Все это затеивалось ради того, чтобы можно было svg файл можно было быстро открыть в файловом менеджере vifm (замените /path/to/file.svg на настоящий путь):
1
map \c :!cp /path/to/template.html /tmp/temp_svg.html && sed -i '' -e 's#YOUR_SVG_FILE.svg#%d/%c#g' /tmp/temp_svg.html && "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --new-window --disable-session-crashed-bubble --disable-infobars --app=file:///tmp/temp_svg.html 2>/dev/null &<cr>