Added Gravemind's Feedly-ish theme, as with TT-RSS 18.12 Levito's theme is broken for now.

This commit is contained in:
x86dev 2018-12-16 14:00:50 +01:00
parent d3ff6b028c
commit 531ea0a8e4
2 changed files with 18 additions and 8 deletions

View File

@ -65,7 +65,8 @@ setup_ttrss()
fi fi
git clone --depth=1 https://github.com/sepich/tt-rss-mobilize.git ${TTRSS_PATH}/plugins/mobilize git clone --depth=1 https://github.com/sepich/tt-rss-mobilize.git ${TTRSS_PATH}/plugins/mobilize
git clone --depth=1 https://github.com/m42e/ttrss_plugin-feediron.git ${TTRSS_PATH}/plugins/feediron git clone --depth=1 https://github.com/m42e/ttrss_plugin-feediron.git ${TTRSS_PATH}/plugins/feediron
git clone --depth=1 https://github.com/levito/tt-rss-feedly-theme.git ${TTRSS_PATH}/themes/feedly-git git clone --depth=1 https://github.com/levito/tt-rss-feedly-theme.git ${TTRSS_PATH}/themes/levito-feedly-git
git clone --depth=1 https://github.com/Gravemind/tt-rss-feedlish-theme.git ${TTRSS_PATH}/themes/gravemind-feedly-git
fi fi
# Add initial config. # Add initial config.

View File

@ -28,14 +28,23 @@ update_plugin_feediron()
( cd ${TTRSS_PATH}/plugins/feediron && git pull origin HEAD ) ( cd ${TTRSS_PATH}/plugins/feediron && git pull origin HEAD )
} }
update_theme_feedly() update_themes()
{ {
echo "Updating: Feedly theme" echo "Updating: Themes"
( cd ${TTRSS_PATH}/themes/feedly-git && git pull origin HEAD ) ( cd ${TTRSS_PATH}/themes/levito-feedly-git && git pull origin HEAD )
( cd ${TTRSS_PATH}/themes/gravemind-feedly-git && git pull origin HEAD )
# Link theme to TTRSS. cd ${TTRSS_PATH}/themes
ln -f -s ${TTRSS_PATH}/themes/feedly-git/feedly ${TTRSS_PATH}/themes/feedly
ln -f -s ${TTRSS_PATH}/themes/feedly-git/feedly.css ${TTRSS_PATH}/themes/feedly.css # Link Levito theme to TTRSS.
ln -f -s ${TTRSS_PATH}/themes/levito-feedly-git/feedly
ln -f -s ${TTRSS_PATH}/themes/levito-feedly-git/feedly.css
# Link Gravemind theme to TTRSS.
ln -f -s ${TTRSS_PATH}/themes/gravemind-feedly-git/feedlish.css
ln -f -s ${TTRSS_PATH}/themes/gravemind-feedly-git/feedlish.css.map
ln -f -s ${TTRSS_PATH}/themes/gravemind-feedly-git/feedlish-night.css
ln -f -s ${TTRSS_PATH}/themes/gravemind-feedly-git/feedlish-night.css.map
} }
update_common() update_common()
@ -60,7 +69,7 @@ update_common()
update_ttrss update_ttrss
update_plugin_mobilize update_plugin_mobilize
update_plugin_feediron update_plugin_feediron
update_theme_feedly update_themes
update_common update_common
echo "Update: Done" echo "Update: Done"