mirror of
https://github.com/YunoHost-Apps/transmission_ynh.git
synced 2024-09-04 01:46:12 +02:00
[enh] Append downloads button.
This commit is contained in:
parent
b5be3e99c1
commit
6ba4380525
3 changed files with 9 additions and 0 deletions
|
@ -43,6 +43,11 @@ sudo service transmission-daemon reload
|
||||||
# Monitor service
|
# Monitor service
|
||||||
sudo yunohost service add transmission-daemon
|
sudo yunohost service add transmission-daemon
|
||||||
|
|
||||||
|
# Patch sources to add a download button
|
||||||
|
sudo cp sources/toolbar-downloads.png /usr/share/transmission/web/style/transmission/images/toolbar-downloads.png
|
||||||
|
sudo cat sources/ynh_common.css >> /usr/share/transmission/web/style/transmission/common.css
|
||||||
|
sudo sed -i "s@<div id=\"toolbar-inspector\" title=\"Toggle Inspector\"></div>@<div id=\"toolbar-inspector\" title=\"Toggle Inspector\"></div><div id=\"toolbar-separator\"></div><a href=\"../../downloads/\" id=\"toolbar-downloads\" title=\"Downloads\"></a>@g" /usr/share/transmission/web/index.html
|
||||||
|
|
||||||
# Configure Nginx and reload
|
# Configure Nginx and reload
|
||||||
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
||||||
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/transmission.conf
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/transmission.conf
|
||||||
|
|
BIN
sources/toolbar-downloads.png
Normal file
BIN
sources/toolbar-downloads.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
4
sources/ynh_common.css
Normal file
4
sources/ynh_common.css
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/* Inserted by Yunohost install script */
|
||||||
|
div#toolbar > div#toolbar-downloads {
|
||||||
|
background: url("images/toolbar-download.png") no-repeat;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue