diff --git a/checkwork.sh b/checkwork.sh new file mode 100644 index 00000000..4acda3a1 --- /dev/null +++ b/checkwork.sh @@ -0,0 +1,14 @@ +#! /bin/bash + +# run with no arguments +# 1. deletes previous build output +# 2. builds default language version of docs only (English) +# 3. changes directory to html output +# 4. runs http server for local review of docs +# +# Requires python 3 + +make clean +make html +cd source/_build/html +python3 -m http.server diff --git a/source/FAQ/index.rst b/source/FAQ/index.rst index 5766da4e..d43113df 100644 --- a/source/FAQ/index.rst +++ b/source/FAQ/index.rst @@ -132,6 +132,23 @@ on GitHub: https://github.com/clearlinux/distribution/issues/422 | +Is Microsoft\* Visual Studio Code\* available? +============================================== + +Yes. Find the CLI command for installing `VS Code`_ and other FlatPak apps in +the `software store`_. Installing FlatPak apps is also covered in our +:ref:`tutorial `. + +The |CL| team is working on a natively packaged version of Visual Studio Code +for future release. + +Join a community forum discussion about manually installing and maintaining +Visual Studio Code: https://community.clearlinux.org/t/need-native-support-for-vs-code-through-swupd/ + +.. _VS Code: https://clearlinux.org/software?search_api_fulltext=vscode + +| + Is FFmpeg available? ==================== diff --git a/source/_themes/otc_tcs_sphinx_theme/searchbox.html b/source/_themes/otc_tcs_sphinx_theme/searchbox.html new file mode 100644 index 00000000..1647a8df --- /dev/null +++ b/source/_themes/otc_tcs_sphinx_theme/searchbox.html @@ -0,0 +1,9 @@ +{%- if builder != 'singlehtml' %} +
+
+ + + +
+
+{%- endif %} \ No newline at end of file diff --git a/source/_themes/otc_tcs_sphinx_theme/static/mag-glass.png b/source/_themes/otc_tcs_sphinx_theme/static/mag-glass.png new file mode 100644 index 00000000..67c376be Binary files /dev/null and b/source/_themes/otc_tcs_sphinx_theme/static/mag-glass.png differ diff --git a/source/_themes/otc_tcs_sphinx_theme/static/tcs_theme.css b/source/_themes/otc_tcs_sphinx_theme/static/tcs_theme.css index 1d34e00f..d3a39bee 100644 --- a/source/_themes/otc_tcs_sphinx_theme/static/tcs_theme.css +++ b/source/_themes/otc_tcs_sphinx_theme/static/tcs_theme.css @@ -36,6 +36,7 @@ .wy-side-nav-search input[type=text] { border-radius: 0px; padding: 0px 0px; + padding-left: 20px; box-shadow: none; border: 0; outline: 0; @@ -284,3 +285,9 @@ div.admonition ul { div#trademarks { color: gray; } + + +#clear-docs-search { + background: url(./mag-glass.png) left no-repeat; + background-size: 15px 15px; +}