OSDN Git Service

Add Counting Screen-time to KWS and app/screentime [0.2.1]
[kit/kit.git] / app / settings / system.html
1 <script>
2     $( "#settings-startup" ).val( localStorage.getItem( "kit-startup" ) );
3     if( System.bootopt.get("safe") ) $("#settings-issafe").html("<strong>[!]現在セーフモードで起動しています</strong><br>");
4     if( System.debugmode ) $("#settings-system-debugmode").prop('checked', true);
5     $("#settings-system-debugmode").on("change", function(){
6         if( $("#settings-system-debugmode").is(':checked') ) System.debugmode = true;
7         else System.debugmode = false;
8     });
9 </script>
10
11 <kit-btn kit-ref="default.html">
12     <span class='fa fa-arrow-circle-left'></span>戻る
13 </kit-btn>
14
15 <h3>
16     <span class='fa fa-cog'></span> システム設定
17 </h3>
18
19 <h4>
20     <span class='fa fa-running'></span>スタートアップ
21 </h4>
22
23 <div class="kit-sub">
24     システムの起動時に自動的に起動するアプリケーションの名前または起動パスを入力します。複数の場合は半角カンマで区切ります。
25 </div>
26
27 <input type='text' class='textbox' id='settings-startup'>
28 <a class='kit-button' kit-e='startup_set'>設定</a>
29 <br>
30 <h4><span class='fa fa-clock'></span>時刻</h4>
31 <div class="little">
32     時刻はSystem.timeオブジェクトに格納されています。<br>
33     設定された時刻:<span class="os-time"></span>
34 </div>
35
36 <h4>
37     <span class='fa fa-bug'></span>デバッグモード
38 </h4>
39
40 <div class="little">
41     デバッグモードの詳細は<a href="https://kitdevhome.wordpress.com/2019/03/27/system-debugmode/" class="kit-hyperlink">こちら</a>をご確認ください。
42 </div>
43
44 <div class="kit-toggle">
45     <input type="checkbox" id="settings-system-debugmode">
46     <label for="settings-system-debugmode"></label>
47     <label for="settings-system-debugmode">デバッグモード</label>
48 </div>
49
50 <h4>
51     <span class='fa fa-window-restore'></span>アプリ管理
52 </h4>
53
54 <div class="little">
55     アプリケーションの管理は<a onclick="launch('appman')" class="kit-hyperlink">アプリ管理</a>から実行してください。
56 </div>
57
58 <h4>
59     <span class='fa fa-shield-alt'></span>セーフブート
60 </h4>
61
62 <div class="little">
63     <span id="settings-issafe" style="color: blue;"></span>
64     セーフモードで起動する場合は、<a class="kit-hyperlink" onclick="location.href = '?safe=true'">ここをクリック</a>またはkitにパラメータ<strong>safe=true</strong>を付与して再起動します。
65 </div>