diff --git a/COL.txt b/COL.txt new file mode 100644 index 0000000..9a03714 --- /dev/null +++ b/COL.txt @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/README.md b/README.md index bb76a59..77a3b8f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ 6. 如果使用过程中手动关闭WiFi(即进入飞行模式),本服务会自动关闭。 7. 使用完成后按电源键关闭本服务。Kindle将恢复到正常状态,若再按电源键则正常锁屏休眠。部分设备可能无效,请通过进入飞行模式或者【Kill】关闭服务 8. 如果有IP显示残留则意味着服务未正常退出,提醒用户设备可能依然处在屏幕常亮状态。正常情况下按电源键后IP会消失,否则请尝试点击【Kill】或重启设备。相反,IP显示消失则意味着服务已经完全关闭,保证了不会有后台任务耗电。 -9. 如果IP及其它提示的显示位置不居中,可以自行在电脑上修改文件`filebrowser_wrapper.sh`、`kill.sh`和`show_status.sh`开头的`col=30`。例如改为`col=20`可以使显示更靠左。 +9. 如果IP及其它提示的显示位置不居中,可以自行在电脑上修改文件`COL.txt`中的数字。例如从`10`改为`20`可以使显示更靠右。 ## 其它说明 * 提供核心功能的二进制文件`extensions/filebrowser/filebrowser`来自 https://github.com/filebrowser/filebrowser ,使用linux-armv7版本的release * 有任何问题或建议欢迎提issue diff --git a/config.xml b/config.xml index a1ddfdf..7c39053 100644 --- a/config.xml +++ b/config.xml @@ -2,7 +2,7 @@ File Browser - 1.6 + 1.7 Sparkle guoyongzhi filebrowser diff --git a/filebrowser_wrapper.sh b/filebrowser_wrapper.sh index 10b6b13..89a5eb4 100644 --- a/filebrowser_wrapper.sh +++ b/filebrowser_wrapper.sh @@ -1,5 +1,5 @@ #!/bin/sh -col=30 +col=$((`cat COL.txt`)) iptables -I INPUT -p tcp --dport 80 -j ACCEPT # enable wireless if it is currently off diff --git a/kill.sh b/kill.sh index b08d7ae..7f6983f 100644 --- a/kill.sh +++ b/kill.sh @@ -1,4 +1,4 @@ -col=30 +col=$((`cat COL.txt`)) eips $col 3 "killing... " lipc-send-event com.lab126.hal powerButtonPressed sleep 5 diff --git a/show_status.sh b/show_status.sh index 71af43e..def0ea3 100644 --- a/show_status.sh +++ b/show_status.sh @@ -1,5 +1,5 @@ #!/bin/sh -col=30 +col=$((`cat COL.txt`)) test_process=$(ps aux | grep "[f]ilebrowser") if [ -n "$test_process" ] then diff --git a/update_binfile.sh b/update_binfile.sh index 4972ecd..63519ce 100644 --- a/update_binfile.sh +++ b/update_binfile.sh @@ -1,3 +1,5 @@ +col=$((`cat COL.txt`)) +eips $col 3 "Updating..." repo="https://github.com/filebrowser/filebrowser" artifact="linux-armv7-filebrowser.tar.gz"