]> git.sur5r.net Git - i3/i3.github.io/commitdiff
JSON formating 43/head
authorAndrey Burov <burik666@gmail.com>
Thu, 1 Feb 2018 10:15:56 +0000 (13:15 +0300)
committerAndrey Burov <burik666@gmail.com>
Thu, 1 Feb 2018 10:15:56 +0000 (13:15 +0300)
docs/user-contributed/conky-i3bar.html

index 538f12359ed1f4f23afdfaadca983b844b0f4a48..a9d94b3dfc8ac966e6b0b4d22a34cc1a4b803cd2 100644 (file)
@@ -47,11 +47,11 @@ Here's a sample JSON text for achieving our goal:
 [
  [].
 
- [ { "full_text":"Home 84.0G Free", "color":"#ffffff" },
-   { "full_text":"RAM 32%" , "color":"#ffffff" } ],
+ [ { "full_text": "Home 84.0G Free", "color": "#ffffff" },
+   { "full_text": "RAM 32%" , "color": "#ffffff" } ],
 
- [ { "full_text":"Home 84.0G Free", "color":"#ffffff" },
-   { "full_text":"RAM 34%" , "color":"#ffffff" } ],
+ [ { "full_text": "Home 84.0G Free", "color": "#ffffff" },
+   { "full_text": "RAM 34%" , "color": "#ffffff" } ],
 
  [....],
  [....],
@@ -104,8 +104,10 @@ In the i3 config file the <tt>bar</tt> config will be something like that
 Now we have to write a <tt>~/.conkyrc</tt> file in order to obtain the desired status:
 </p>
 
-<pre><tt>[{ "full_text":"Home 84.0G Free" , "color":"#ffffff" },
- { "full_text":"RAM 32%" , "color":"#ffffff" }],</tt></pre>
+<pre><tt>[
+    { "full_text": "Home 84.0G Free" , "color": "#ffffff" },
+    { "full_text": "RAM 32%" , "color": "#ffffff" }
+],</tt></pre>
 
 <p>
 Here's a sample conkyrc that updates every 2 seconds. Just to make things a litte bit more exciting 
@@ -145,15 +147,12 @@ we put a condition in the script in order to write the occupied RAM in red if th
     -- number of cpu samples to average
     -- set to 1 to disable averaging
     cpu_avg_samples = 2,
-
-    -- Stuff after 'TEXT' will be formatted on screen
 };
 
 conky.text = [[
-{% raw %}
-[{ "full_text" : "Home ${fs_free /home} Free" , "color" : "\#ffffff" },
-{ "full_text" : "RAM ${memperc}%" , "color" :
-${if_match ${memperc}<90}"\#ffffff"${else}"\#ff0000"${endif} }],
-{% endraw %}
+{% raw %}[
+    { "full_text": "Home ${fs_free /home} Free" , "color": "\#ffffff" },
+    { "full_text": "RAM ${memperc}%" , "color": ${if_match ${memperc}<90}"\#ffffff"${else}"\#ff0000"${endif} }
+],{% endraw %}
 ]];
 /tt></pre>