1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
|
conky(1) conky(1)
NAME
conky - A system monitor for X originally based on the torsmo code, but more kickass.
It just keeps on given'er. Yeah.
SYNOPSIS
conky [ options ]
DESCRIPTION
Conky is a system monitor for X originally based on torsmo. Since its inception, Conky
has changed significantly from its predecessor, while maintaining simplicity and con-
figurability. Conky can display just about anything, either on your root desktop or in
its own window. Not only does Conky have many built-in objects, it can also display
just about any piece of information by using scripts and other external programs.
Conky has more than 250 built in objects, including support for a plethora of OS stats
(uname, uptime, CPU usage, mem usage, disk usage, "top" like process stats, and net-
work monitoring, just to name a few), built in IMAP and POP3 support, built in support
for many popular music players (MPD, XMMS2, BMPx, Audacious), and much much more.
Conky can display this info either as text, or using simple progress bars and graph
widgets, with different fonts and colours.
We are always looking for help, whether its reporting bugs, writing patches, or writ-
ing docs. Please use the facilities at SourceForge to make bug reports, feature re-
quests, and submit patches, or stop by #conky on irc.freenode.net if you have ques-
tions or want to contribute.
Thanks for your interest in Conky.
COMPILING
For users compiling from source on a binary distro, make sure you have the X develop-
ment libraries installed (Unless you provide configure with "--disable-x11"). This
should be a package along the lines of "libx11-dev" or "xorg-x11-dev" for X11 libs,
and similar "-dev" format for the other libs required (depending on your configure op-
tions). You should be able to see which extra packages you need to install by reading
errors that you get from './configure'. You can enable/disable stuff by giving options
to configure, but be careful with disabling. For example: with --disable-math you
won't get errors but logarithmic graphs will be normal graphs and gauges will miss
their line.
Conky has (for some time) been available in the repositories of most popular distribu-
tions. Here are some installation instructions for a few:
Gentoo users -- Conky is in Gentoo's Portage... simply use "emerge app-admin/conky"
for installation.
Debian, etc. users -- Conky should be in your repositories, and can be installed by
doing "aptitude install conky".
Example to compile and run Conky with all optional components (note that some config-
ure options may differ for your system):
sh autogen.sh # Only required if building from the git repo
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
--datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-own-window
--enable-audacious[=yes|no|legacy] --enable-bmpx --disable-hddtemp --disable-mpd --en-
able-xmms2 --disable-portmon --disable-network --enable-debug --disable-x11 --dis-
able-double-buffer --disable-xdamage --disable-xft
make
make install # Optional
src/conky
Conky has been tested to be compatible with C99 C, however it has not been tested with
anything other than gcc, and is not guaranteed to work with other compilers.
YOU SHOULD KNOW
Conky is generally very good on resources. That said, the more you try to make Conky
do, the more resources it is going to consume.
An easy way to force Conky to reload your ~/.conkyrc: "killall -SIGUSR1 conky". Saves
you the trouble of having to kill and then restart. You can now also do the same with
SIGHUP.
OPTIONS
Command line options override configurations defined in configuration file.
-v | -V | --version
Prints version and exits
-q | --quiet
Run Conky in 'quiet mode' (ie. no output)
-D | --debug
Increase debugging output, ie. -DD for more debugging
-a | --alignment= ALIGNMENT
Text alignment on screen, {top,bottom,middle}_{left,right,middle} or none. Can
also be abbreviated with first chars of position, ie. tr for top_right.
-b | --double-buffer
Use double buffering (eliminates "flicker")
-c | --config= FILE
Config file to load instead of $HOME/.conkyrc
-C | --print-config
Print builtin default config to stdout. See also the section EXAMPLES for more
information.
-d | --daemonize
Daemonize Conky, aka fork to background
-f | --font= FONT
Font to use
-h | --help
Prints command line help and exits
-o | --own-window
Create own window to draw
-t | --text= TEXT
Text to render, remember single quotes, like -t ' $uptime '
-p | --pause= SECONDS
Time to pause before actually starting Conky
-u | --interval= SECONDS
Update interval
-w | --window-id= WIN_ID
Window id to draw
-X | --display= DISPLAY
X11 display to use
-x X_COORDINATE
X position
-y Y_COORDINATE
Y position
-i COUNT
Number of times to update Conky (and quit)
CONFIGURATION SETTINGS
Default configuration file location is $HOME/.conkyrc or
${sysconfdir}/conky/conky.conf. On most systems, sysconfdir is /etc, and you can find
the sample config file there (/etc/conky/conky.conf).
You might want to copy it to $HOME/.conkyrc and then start modifying it. Other configs
can be found at http://conky.sf.net/
TEXT After this begins text to be formatted on screen. Backslash (\) escapes new-
lines in the text section. This can be useful for cleaning up config files
where conky is used to pipe input to dzen2.
alignment
Aligned position on screen, may be top_left, top_right, top_middle, bot-
tom_left, bottom_right, bottom_middle, middle_left, middle_middle, mid-
dle_right, or none (also can be abreviated as tl, tr, tm, bl, br, bm, ml, mm,
mr). See also gap_x and gap_y.
append_file
Append the file given as argument.
background
Boolean value, if true, Conky will be forked to background when started.
border_inner_margin
Inner border margin in pixels (the margin between the border and text).
border_outer_margin
Outer border margin in pixels (the margin between the border and the edge of
the window).
border_width
Border width in pixels.
colorN Predefine a color for use inside TEXT segments. Substitute N by a digit be-
tween 0 and 9, inclusively. When specifying the color value in hex, omit the
leading hash (#).
cpu_avg_samples
The number of samples to average for CPU monitoring.
default_bar_size
Specify a default width and height for bars. Example: 'default_bar_size 0 6'.
This is particularly useful for execbar and execibar as they do not take size
arguments.
default_color
Default color and border color
default_gauge_size
Specify a default width and height for gauges. Example: 'default_gauge_size 25
25'. This is particularly useful for execgauge and execigauge as they do not
take size arguments
default_graph_size
Specify a default width and height for graphs. Example: 'default_graph_size 0
25'. This is particularly useful for execgraph and execigraph as they do not
take size arguments
default_outline_color
Default outline color
default_shade_color
Default shading color and border's shading color
disable_auto_reload
Enable to disable the inotify-based auto config reload feature.
diskio_avg_samples
The number of samples to average for disk I/O monitoring.
display
Specify an X display to connect to.
double_buffer
Use the Xdbe extension? (eliminates flicker) It is highly recommended to use
own window with this one so double buffer won't be so big.
draw_borders
Draw borders around text?
draw_graph_borders
Draw borders around graphs?
draw_outline
Draw outlines?
draw_shades
Draw shades?
extra_newline
Put an extra newline at the end when writing to stdout, useful for writing to
awesome's wiboxes.
font Font name in X, xfontsel can be used to get a nice font
format_human_readable
If enabled, values which are in bytes will be printed in human readable format
(i.e., KiB, MiB, etc). If disabled, the number of bytes is printed instead.
gap_x Gap, in pixels, between right or left border of screen, same as passing -x at
command line, e.g. gap_x 10. For other position related stuff, see 'align-
ment'.
gap_y Gap, in pixels, between top or bottom border of screen, same as passing -y at
command line, e.g. gap_y 10. For other position related stuff, see 'align-
ment'.
hddtemp_host
Hostname to connect to for hddtemp objects. Defaults to "127.0.0.1".
hddtemp_port
Port to use for hddtemp connections. Defaults to 7634.
if_up_strictness
How strict should if_up be when testing an interface for being up? The value is
one of up, link or address, to check for the interface being solely up, being
up and having link or being up, having link and an assigned IP address.
imap Default global IMAP server. Arguments are: "host user pass [-i interval (in
seconds)] [-f 'folder'] [-p port] [-e 'command'] [-r retries]". Default port is
143, default folder is 'INBOX', default interval is 5 minutes, and default num-
ber of retries before giving up is 5. If the password is supplied as '*', you
will be prompted to enter the password when Conky starts.
imlib_cache_flush_interval
Interval (in seconds) to flush Imlib2 cache.
imlib_cache_size
Imlib2 image cache size, in bytes. Defaults to 4MiB. Increase this value if you
use $image lots. Set to 0 to disable the image cache.
lua_draw_hook_post function_name [function arguments]
This function, if defined, will be called by Conky through each iteration after
drawing to the window. Requires X support. Takes any number of optional argu-
ments. Use this hook for drawing things on top of what Conky draws. Conky puts
'conky_' in front of function_name to prevent accidental calls to the wrong
function unless you place 'conky_' in front of it yourself.
lua_draw_hook_pre function_name [function arguments]
This function, if defined, will be called by Conky through each iteration be-
fore drawing to the window. Requires X support. Takes any number of optional
arguments. Use this hook for drawing things on top of what Conky draws. Conky
puts 'conky_' in front of function_name to prevent accidental calls to the
wrong function unless you place 'conky_' in front of it yourself.
lua_load
Loads the Lua scripts separated by spaces.
lua_shutdown_hook function_name [function arguments]
This function, if defined, will be called by Conky at shutdown or when the con-
figuration is reloaded. Use this hook to clean up after yourself, such as free-
ing memory which has been allocated by external libraries via Lua. Conky puts
'conky_' in front of function_name to prevent accidental calls to the wrong
function unless you place 'conky_' in front of it yourself.
lua_startup_hook function_name [function arguments]
This function, if defined, will be called by Conky at startup or when the con-
figuration is reloaded. Use this hook to initialize values, or for any run-
once applications. Conky puts 'conky_' in front of function_name to prevent ac-
cidental calls to the wrong function unless you place 'conky_' in front of it
yourself.
mail_spool
Mail spool for mail checking
max_port_monitor_connections
Allow each port monitor to track at most this many connections (if 0 or not
set, default is 256)
max_specials
Maximum number of special things, e.g. fonts, offsets, aligns, etc. (default is
512)
max_text_width width
When a line in the output contains 'width' chars and the end isn't reached, the
next char will start on a new line. If you want to make sure that lines don't
get broken, set 'width' to 0
max_user_text bytes
Maximum size of user text buffer, i.e. layout below TEXT line in config file
(default is 16384 bytes)
maximum_width pixels
Maximum width of window
minimum_size width (height)
Minimum size of window
mpd_host
Host of MPD server
mpd_password
MPD server password
mpd_port
Port of MPD server
music_player_interval
Music player thread update interval (defaults to Conky's update interval)
net_avg_samples
The number of samples to average for net data
no_buffers
Subtract (file system) buffers from used memory?
nvidia_display
The display that the nvidia variable will use (defaults to the value of the
display variable)
out_to_console
Print text to stdout.
out_to_ncurses
Print text in the console, but use ncurses so that conky can print the text of
a new update over the old text. (In the future this will provide more useful
things)
out_to_stderr
Print text to stderr.
out_to_x
When set to no, there will be no output in X (useful when you also use things
like out_to_console). If you set it to no, make sure that it's placed before
all other X-related setting (take the first line of your configfile to be
sure). Default value is yes
override_utf8_locale
Force UTF8? requires XFT
overwrite_file
Overwrite the file given as argument.
own_window
Boolean, create own window to draw?
own_window_class
Manually set the WM_CLASS name. Defaults to "Conky".
own_window_colour colour
If own_window_transparent no, set a specified background colour (defaults to
black). Takes either a hex value (e.g. ffffff, note the lack of '#') or a valid
RGB name (see /usr/lib/X11/rgb.txt)
own_window_hints undecorated,below,above,sticky,skip_taskbar,skip_pager
If own_window is yes, you may use these window manager hints to affect the way
Conky displays. Notes: Use own_window_type desktop as another way to implement
many of these hints implicitly. If you use own_window_type override, window
manager hints have no meaning and are ignored.
own_window_title
Manually set the window name. Defaults to "<hostname> - conky".
own_window_argb_visual
Boolean, use ARGB visual? ARGB can be used for real transparency, note that a
composite manager is required for real transparency. This option will not work
as desired (in most cases) in conjunction with 'own_window_type override'.
own_window_argb_value
When ARGB visuals are enabled, this use this to modify the alpha value used.
Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity.
own_window_transparent
Boolean, set transparency? If ARGB visual is enabled, sets background opacity
to 0%.
own_window_type
if own_window is yes, you may specify type normal, desktop, dock, panel or
override (default: normal). Desktop windows are special windows that have no
window decorations; are always visible on your desktop; do not appear in your
pager or taskbar; and are sticky across all workspaces. Panel windows reserve
space along a desktop edge, just like panels and taskbars, preventing maximized
windows from overlapping them. The edge is chosen based on the alignment op-
tion. Override windows are not under the control of the window manager. Hints
are ignored. This type of window can be useful for certain situations.
pad_percents
Pad percentages to this many decimals (0 = no padding)
pop3 Default global POP3 server. Arguments are: "host user pass [-i interval (in
seconds)] [-p port] [-e 'command'] [-r retries]". Default port is 110, default
interval is 5 minutes, and default number of retries before giving up is 5. If
the password is supplied as '*', you will be prompted to enter the password
when Conky starts.
short_units
Shortens units to a single character (kiB->k, GiB->G, etc.). Default is off.
show_graph_range
Shows the time range covered by a graph.
show_graph_scale
Shows the maximum value in scaled graphs.
stippled_borders
Border stippling (dashing) in pixels
temperature_unit
Desired output unit of all objects displaying a temperature. Parameters are ei-
ther "fahrenheit" or "celsius". The default unit is degree Celsius.
templateN
Define a template for later use inside TEXT segments. Substitute N by a digit
between 0 and 9, inclusively. The value of the variable is being inserted into
the stuff below TEXT at the corresponding position, but before some substitu-
tions are applied:
'\n' -> newline
'\\' -> backslash
'\ ' -> space
'\N' -> template argument N
text_buffer_size bytes
Size of the standard text buffer (default is 256 bytes). This buffer is used
for intermediary text, such as individual lines, output from $exec vars, and
various other variables. Increasing the size of this buffer can drastically re-
duce Conky's performance, but will allow for more text display per variable.
The size of this buffer cannot be smaller than the default value of 256 bytes.
times_in_seconds
If true, variables that output times output a number that represents seconds.
This doesn't affect $time, $tztime and $utime
top_cpu_separate
If true, cpu in top will show usage of one processor's power. If false, cpu in
top will show the usage of all processors' power combined.
top_name_width
Width for $top name value (defaults to 15 characters).
total_run_times
Total number of times for Conky to update before quitting. Zero makes Conky run
forever
update_interval seconds
Update interval
update_interval_on_battery seconds
Update interval when running on batterypower
uppercase
Boolean value, if true, text is rendered in upper case
use_spacer
Adds spaces around certain objects to stop them from moving other things
around. Arguments are left, right, and none (default). The old true/false val-
ues are deprecated and default to right/none respectively. Note that this only
helps if you are using a mono font, such as Bitstream Vera Sans Mono.
use_xft
Use Xft (anti-aliased font and stuff)
xftalpha
Alpha of Xft font. Must be a value at or between 1 and 0.
xftfont
Xft font to use.
OBJECTS/VARIABLES
Colours are parsed using XParsecolor(), there might be a list of them:
/usr/share/X11/rgb.txt. Colour can be also in #rrggbb format (hex).
Some objects may create threads, and sometimes these threads will not be destroyed un-
til Conky terminates. There is no way to destroy or clean up threads while Conky is
running. For example, if you use an MPD variable, the MPD thread will keep running un-
til Conky dies. Some threaded objects will use one of the parameters as a 'key', so
that you only have 1 relevant thread running (for example, the $curl, $rss and $weath-
er objects launch one thread per URI).
acpiacadapter (adapter)
ACPI ac adapter state. On linux, the adapter option specifies the subfolder of
/sys/class/power_supply containing the state information (tries "AC" and "ADP1"
if there is no argument given). Non-linux systems ignore it.
acpifan
ACPI fan state
acpitemp
ACPI temperature in C.
addr (interface)
IP address for an interface, or "No Address" if no address is assigned.
addrs (interface)
IP addresses for an interface (if one - works like addr). Linux only.
adt746xcpu
CPU temperature from therm_adt746x
adt746xfan
Fan speed from therm_adt746x
alignc (num)
Align text to centre
alignr (num)
Right-justify text, with space of N
apcupsd host port
Sets up the connection to apcupsd daemon. Prints nothing, defaults to local-
host:3551
apcupsd_cable
Prints the UPS connection type.
apcupsd_charge
Current battery capacity in percent.
apcupsd_lastxfer
Reason for last transfer from line to battery.
apcupsd_linev
Nominal input voltage.
apcupsd_load
Current load in percent.
apcupsd_loadbar
Bar showing current load.
apcupsd_loadgauge (height),(width)
Gauge that shows current load.
apcupsd_loadgraph (height),(width) (gradient colour 1) (gradient colour 2) (scale)
(-t) (-l)
History graph of current load.
apcupsd_model
Prints the model of the UPS.
apcupsd_name
Prints the UPS user-defined name.
apcupsd_status
Prints current status (on-line, on-battery).
apcupsd_temp
Current internal temperature.
apcupsd_timeleft
Time left to run on battery.
apcupsd_upsmode
Prints the UPS mode (e.g. standalone).
apm_adapter
Display APM AC adapter status (FreeBSD only)
apm_battery_life
Display APM battery life in percent (FreeBSD only)
apm_battery_time
Display remaining APM battery life in hh:mm:ss or "unknown" if AC adapterstatus
is on-line or charging (FreeBSD only)
audacious_bar (height),(width)
Progress bar
audacious_bitrate
Bitrate of current tune
audacious_channels
Number of audio channels of current tune
audacious_filename
Full path and filename of current tune
audacious_frequency
Sampling frequency of current tune
audacious_length
Total length of current tune as MM:SS
audacious_length_seconds
Total length of current tune in seconds
audacious_main_volume
The current volume fetched from Audacious
audacious_playlist_length
Number of tunes in playlist
audacious_playlist_position
Playlist position of current tune
audacious_position
Position of current tune (MM:SS)
audacious_position_seconds
Position of current tune in seconds
audacious_status
Player status (Playing/Paused/Stopped/Not running)
audacious_title (max length)
Title of current tune with optional maximum length specifier
battery (num)
Battery status and remaining percentage capacity of ACPI or APM battery. ACPI
battery number can be given as argument (default is BAT0).
battery_bar (height),(width) (num)
Battery percentage remaining of ACPI battery in a bar. ACPI battery number can
be given as argument (default is BAT0).
battery_percent (num)
Battery percentage remaining for ACPI battery. ACPI battery number can be giv-
en as argument (default is BAT0).
battery_short (num)
Battery status and remaining percentage capacity of ACPI or APM battery. ACPI
battery number can be given as argument (default is BAT0). This mode display a
short status, which means that C is displayed instead of charging, D for dis-
charging, F for full, N for not present, E for empty and U for unknown.
battery_time (num)
Battery charge/discharge time remaining of ACPI battery. ACPI battery number
can be given as argument (default is BAT0).
blink text_and_other_conky_vars
Let 'text_and_other_conky_vars' blink on and off.
bmpx_album
Album in current BMPx track
bmpx_artist
Artist in current BMPx track
bmpx_bitrate
Bitrate of the current BMPx track
bmpx_title
Title of the current BMPx track
bmpx_track
Track number of the current BMPx track
bmpx_uri
URI of the current BMPx track
buffers
Amount of memory buffered
cached Amount of memory cached
cmdline_to_pid string
PID of the first process that has string in it's commandline
color (color)
Change drawing color to 'color' which is a name of a color or a hexcode preced-
ed with # (for example #0A1B2C ). If you use ncurses only the following colors
are supported: red,green,yellow,blue,magenta,cyan,black,white.
colorN Change drawing color to colorN configuration option, where N is a digit between
0 and 9, inclusively.
combine var1 var2
Places the lines of var2 to the right of the lines of var1 separated by the
chars that are put between var1 and var2. For example: ${combine ${head
/proc/cpuinfo 2} - ${head /proc/meminfo 1}} gives as output "cpuinfo_line1 -
meminfo_line1" on line 1 and "cpuinfo_line2 -" on line 2. $combine vars can al-
so be nested to place more vars next to each other.
conky_build_arch
CPU architecture Conky was built for
conky_build_date
Date Conky was built
conky_version
Conky version
cpu (cpuN)
CPU usage in percents. For SMP machines, the CPU number can be provided as an
argument. ${cpu cpu0} is the total usage, and ${cpu cpuX} (X >= 1) are individ-
ual CPUs.
cpubar (cpuN) (height),(width)
Bar that shows CPU usage, height is bar's height in pixels. See $cpu for more
info on SMP.
cpugauge (cpuN) (height),(width)
Elliptical gauge that shows CPU usage, height and width are gauge's vertical
and horizontal axis respectively. See $cpu for more info on SMP.
cpugraph (cpuN) (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t)
(-l)
CPU usage graph, with optional colours in hex, minus the #. See $cpu for more
info on SMP. Uses a logarithmic scale (to see small numbers) when you use the
-l switch. Takes the switch '-t' to use a temperature gradient, which makes the
gradient values change depending on the amplitude of a particular graph value
(try it and see).
curl url (interval_in_minutes)
Download data from URI using Curl at the specified interval. The interval may
be a floating point value greater than 0, otherwise defaults to 15 minutes.
Most useful when used in conjunction with Lua and the Lua API. This object is
threaded, and once a thread is created it can't be explicitly destroyed. One
thread will run for each URI specified. You can use any protocol that Curl sup-
ports.
desktop
Number of the desktop on which conky is running or the message "Not running in
X" if this is the case.
desktop_name
Name of the desktop on which conky is running or the message "Not running in X"
if this is the case.
desktop_number
Number of desktops or the message "Not running in X" if this is the case.
disk_protect device
Disk protection status, if supported (needs kernel-patch). Prints either
"frozen" or "free " (note the padding).
diskio (device)
Displays current disk IO. Device is optional, and takes the form of sda for
/dev/sda. Individual partitions are allowed.
diskio_read (device)
Displays current disk IO for reads. Device as in diskio.
diskio_write (device)
Displays current disk IO for writes. Device as in diskio.
diskiograph (device) (height),(width) (gradient colour 1) (gradient colour 2) (scale)
(-t) (-l)
Disk IO graph, colours defined in hex, minus the #. If scale is non-zero, it
becomes the scale for the graph. Uses a logarithmic scale (to see small num-
bers) when you use -l switch. Takes the switch '-t' to use a temperature gradi-
ent, which makes the gradient values change depending on the amplitude of a
particular graph value (try it and see).
diskiograph_read (device) (height),(width) (gradient colour 1) (gradient colour 2)
(scale) (-t) (-l)
Disk IO graph for reads, colours defined in hex, minus the #. If scale is non-
zero, it becomes the scale for the graph. Device as in diskio. Uses a logarith-
mic scale (to see small numbers) when you use -l switch. Takes the switch '-t'
to use a temperature gradient, which makes the gradient values change depending
on the amplitude of a particular graph value (try it and see).
diskiograph_write (device) (height),(width) (gradient colour 1) (gradient colour 2)
(scale) (-t) (-l)
Disk IO graph for writes, colours defined in hex, minus the #. If scale is non-
zero, it becomes the scale for the graph. Device as in diskio. Uses a logarith-
mic scale (to see small numbers) when you use -l switch. Takes the switch '-t'
to use a temperature gradient, which makes the gradient values change depending
on the amplitude of a particular graph value (try it and see).
downspeed (net)
Download speed in suitable IEC units
downspeedf (net)
Download speed in KiB with one decimal
downspeedgraph (netdev) (height),(width) (gradient colour 1) (gradient colour 2)
(scale) (-t) (-l)
Download speed graph, colours defined in hex, minus the #. If scale is non-ze-
ro, it becomes the scale for the graph. Uses a logarithmic scale (to see small
numbers) when you use -l switch. Takes the switch '-t' to use a temperature
gradient, which makes the gradient values change depending on the amplitude of
a particular graph value (try it and see).
draft_mails (maildir) (interval)
Number of mails marked as draft in the specified mailbox or mail spool if not.
Only maildir type mailboxes are supported, mbox type will return -1.
else Text to show if any of the above are not true
endif Ends an $if block.
entropy_avail
Current entropy available for crypto freaks
entropy_bar (height),(width)
Normalized bar of available entropy for crypto freaks
entropy_perc
Percentage of entropy available in comparison to the poolsize
entropy_poolsize
Total size of system entropy pool for crypto freaks
eval string
Evaluates given string according to the rules of TEXT interpretation, i.e.
parsing any contained text object specifications into their output, any occur-
ing '$$' into a single '$' and so on. The output is then being parsed again.
eve api_userid api_key character_id
Fetches your currently training skill from the Eve Online API servers
(http://www.eve-online.com/) and displays the skill along with the remaining
training time.
exec command
Executes a shell command and displays the output in conky. warning: this takes
a lot more resources than other variables. I'd recommend coding wanted behav-
iour in C and posting a patch.
execbar command
Same as exec, except if the first value return is a value between 0-100, it
will use that number for a bar. The size for bars can be controlled via the
default_bar_size config setting.
execgauge command
Same as exec, except if the first value returned is a value between 0-100, it
will use that number for a gauge. The size for gauges can be controlled via the
default_gauge_size config setting.
execgraph (-t) (-l) command
Same as execbar, but graphs values. Uses a logaritmic scale when the log option
(-l switch) is given (to see small numbers). Values still have to be between 0
and 100. The size for graphs can be controlled via the default_graph_size con-
fig setting. Takes the switch '-t' to use a temperature gradient, which makes
the gradient values change depending on the amplitude of a particular graph
value (try it and see). If -t or -l is your first argument, you may need to
preceed it by a space (' ').
execi interval command
Same as exec but with specific interval. Interval can't be less than update_in-
terval in configuration. See also $texeci
execibar interval command
Same as execbar, except with an interval
execigauge interval command
Same as execgauge, but takes an interval arg and gauges values.
execigraph interval (-t) (-l) command
Same as execgraph, but takes an interval arg and graphs values. If -t or -l is
your first argument, you may need to preceed it by a space (' ').
execp command
Executes a shell command and displays the output in conky. warning: this takes
a lot more resources than other variables. I'd recommend coding wanted behav-
iour in C and posting a patch. This differs from $exec in that it parses the
output of the command, so you can insert things like ${color red}hi!${color} in
your script and have it correctly parsed by Conky. Caveats: Conky parses and
evaluates the output of $execp every time Conky loops, and then destroys all
the objects. If you try to use anything like $execi within an $execp statement,
it will functionally run at the same interval that the $execp statement runs,
as it is created and destroyed at every interval.
execpi interval command
Same as execp but with specific interval. Interval can't be less than up-
date_interval in configuration. Note that the output from the $execpi command
is still parsed and evaluated at every interval.
flagged_mails (maildir) (interval)
Number of mails marked as flagged in the specified mailbox or mail spool if
not. Only maildir type mailboxes are supported, mbox type will return -1.
font (font)
Specify a different font. This new font will apply to the current line and ev-
erything following. You can use a $font with no arguments to change back to the
default font (much like with $color)
format_time seconds format
Format time given in seconds. This var only works when the times_in_seconds
configuration setting is on. Format is a string that should start and end with
a "-char. The "-chars are not part of the output, \w,\d,\h,\m,\s,\(,\) and \\
are replaced by weeks,days,hours,minutes,seconds,(,) and \. If you leave out a
unit, it's value will be expressed in the highest unite lower then the one left
out. Text between ()-chars will not be visible if a replaced unit in this text
is 0. If seconds is a decimal number then you can see the numbers behind the
point by using \S followed by a number that specifies the amount of digits be-
hind the point that you want to see (maximum 9). You can also place a 'x' be-
hind \S so you have all digits behind the point and no trailing zero's. (also
maximum 9)
forwarded_mails (maildir) (interval)
Number of mails marked as forwarded in the specified mailbox or mail spool if
not. Only maildir type mailboxes are supported, mbox type will return -1.
freq (n)
Returns CPU #n's frequency in MHz. CPUs are counted from 1. If omitted, the pa-
rameter defaults to 1.
freq_g (n)
Returns CPU #n's frequency in GHz. CPUs are counted from 1. If omitted, the pa-
rameter defaults to 1.
fs_bar (height),(width) fs
Bar that shows how much space is used on a file system. height is the height in
pixels. fs is any file on that file system.
fs_bar_free (height),(width) fs
Bar that shows how much space is free on a file system. height is the height in
pixels. fs is any file on that file system.
fs_free (fs)
Free space on a file system available for users.
fs_free_perc (fs)
Free percentage of space on a file system available for users.
fs_size (fs)
File system size.
fs_type (fs)
File system type.
fs_used (fs)
File system used space.
fs_used_perc (fs)
Percent of file system used space.
goto x The next element will be printed at position 'x'.
gw_iface
Displays the default route's interface or "multiple"/"none" accordingly.
gw_ip Displays the default gateway's IP or "multiple"/"none" accordingly.
hddtemp (dev)
Displays temperature of a selected hard disk drive as reported by the hddtemp
daemon. Use hddtemp_host and hddtemp_port to specify a host and port for all
hddtemp objects. If no dev parameter is given, the first disk returned by the
hddtemp daemon is used.
head logfile lines (next_check)
Displays first N lines of supplied text file. The file is checked every
'next_check' update. If next_check is not supplied, Conky defaults to 2. Max of
30 lines can be displayed, or until the text buffer is filled.
hr (height)
Horizontal line, height is the height in pixels
hwmon (dev) type n (factor offset)
Hwmon sensor from sysfs (Linux 2.6). Parameter dev may be omitted if you have
only one hwmon device. Parameter type is either 'in' or 'vol' meaning voltage;
'fan' meaning fan; 'temp' meaning temperature. Parameter n is number of the
sensor. See /sys/class/hwmon/ on your local computer. The optional arguments
'factor' and 'offset' allow precalculation of the raw input, which is being
modified as follows: 'input = input * factor + offset'. Note that they have to
be given as decimal values (i.e. contain at least one decimal place).
i2c (dev) type n (factor offset)
I2C sensor from sysfs (Linux 2.6). Parameter dev may be omitted if you have on-
ly one I2C device. Parameter type is either 'in' or 'vol' meaning voltage;
'fan' meaning fan; 'temp' meaning temperature. Parameter n is number of the
sensor. See /sys/bus/i2c/devices/ on your local computer. The optional argu-
ments 'factor' and 'offset' allow precalculation of the raw input, which is be-
ing modified as follows: 'input = input * factor + offset'. Note that they
have to be given as decimal values (i.e. contain at least one decimal place).
i8k_ac_status
If running the i8k kernel driver for Inspiron laptops, displays whether ac pow-
er is on, as listed in /proc/i8k (translated to human-readable). Beware that
this is by default not enabled by i8k itself.
i8k_bios
If running the i8k kernel driver for Inspiron laptops, displays the bios ver-
sion as listed in /proc/i8k.
i8k_buttons_status
If running the i8k kernel driver for Inspiron laptops, displays the volume but-
tons status as listed in /proc/i8k.
i8k_cpu_temp
If running the i8k kernel driver for Inspiron laptops, displays the cpu temper-
ature in Celsius, as reported by /proc/i8k.
i8k_left_fan_rpm
If running the i8k kernel driver for Inspiron laptops, displays the left fan's
rate of rotation, in revolutions per minute as listed in /proc/i8k. Beware,
some laptops i8k reports these fans in reverse order.
i8k_left_fan_status
If running the i8k kernel driver for Inspiron laptops, displays the left fan
status as listed in /proc/i8k (translated to human-readable). Beware, some lap-
tops i8k reports these fans in reverse order.
i8k_right_fan_rpm
If running the i8k kernel driver for Inspiron laptops, displays the right fan's
rate of rotation, in revolutions per minute as listed in /proc/i8k. Beware,
some laptops i8k reports these fans in reverse order.
i8k_right_fan_status
If running the i8k kernel driver for Inspiron laptops, displays the right fan
status as listed in /proc/i8k (translated to human-readable). Beware, some lap-
tops i8k reports these fans in reverse order.
i8k_serial
If running the i8k kernel driver for Inspiron laptops, displays your laptop se-
rial number as listed in /proc/i8k.
i8k_version
If running the i8k kernel driver for Inspiron laptops, displays the version
formatting of /proc/i8k.
ibm_brightness
If running the IBM ACPI, displays the brigtness of the laptops's LCD (0-7).
ibm_fan
If running the IBM ACPI, displays the fan speed.
ibm_temps N
If running the IBM ACPI, displays the temperatures from the IBM temperature
sensors (N=0..7) Sensor 0 is on the CPU, 3 is on the GPU.
ibm_volume
If running the IBM ACPI, displays the "master" volume, controlled by the volume
keys (0-14).
iconv_start codeset_from codeset_to
Convert text from one codeset to another using GNU iconv. Needs to be stopped
with iconv_stop.
iconv_stop
Stop iconv codeset conversion.
if_empty (var)
if conky variable VAR is empty, display everything between $if_empty and the
matching $endif
if_existing file (string)
if FILE exists, display everything between if_existing and the matching $endif.
The optional second parameter checks for FILE containing the specified string
and prints everything between $if_existing and the matching $endif.
if_gw if there is at least one default gateway, display everything between $if_gw and
the matching $endif
if_match expression
Evaluates the given boolean expression, printing everything between $if_match
and the matching $endif depending on whether the evaluation returns true or
not. Valid expressions consist of a left side, an operator and a right side.
Left and right sides are being parsed for contained text objects before evalua-
tion. Recognised left and right side types are:
doubleArgument consists of only digits and a single dot.
longArgument consists of only digits.
stringArgument is enclosed in quotation marks (")
Valid operands are: '>', '<', '>=', '<=', '==', '!='.
if_mixer_mute (mixer)
If mixer exists, display everything between $if_mixer_mute and the matching
$endif. If no mixer is specified, "Vol" is used.
if_mounted (mountpoint)
if MOUNTPOINT is mounted, display everything between $if_mounted and the match-
ing $endif
if_mpd_playing
if mpd is playing or paused, display everything between $if_mpd_playing and the
matching $endif
if_running (process)
if PROCESS is running, display everything $if_running and the matching $endif.
This uses the ``pidof'' command, so the -x switch is also supported.
if_smapi_bat_installed (INDEX)
when using smapi, if the battery with index INDEX is installed, display every-
thing between $if_smapi_bat_installed and the matching $endif
if_up (interface)
if INTERFACE exists and is up, display everything between $if_up and the match-
ing $endif
if_updatenr (updatenr)
If it's the UPDATENR-th time that conky updates, display everything between
$if_updatenr and the matching $endif. The counter resets when the highest UP-
DATENR is reached. Example : "{$if_updatenr 1}foo$endif{$if_updatenr 2}bar$en-
dif{$if_updatenr 4}$endif" shows foo 25% of the time followed by bar 25% of the
time followed by nothing the other half of the time.
if_xmms2_connected
Display everything between $if_xmms2_connected and the matching $endif if xmms2
is running.
image <path to image> (-p x,y) (-s WxH) (-n) (-f interval)
Renders an image from the path specified using Imlib2. Takes 4 optional argu-
ments: a position, a size, a no-cache switch, and a cache flush interval.
Changing the x,y position will move the position of the image, and changing the
WxH will scale the image. If you specify the no-cache flag (-n), the image will
not be cached. Alternately, you can specify the -f int switch to specify a
cache flust interval for a particular image. Example: ${image /home/bren-
den/cheeseburger.jpg -p 20,20 -s 200x200} will render 'cheeseburger.jpg' at
(20,20) scaled to 200x200 pixels. Conky does not make any attempt to adjust the
position (or any other formatting) of images, they are just rendered as per the
arguments passed. The only reason $image is part of the TEXT section, is to al-
low for runtime modifications, through $execp $lua_parse, or some other method.
imap_messages (args)
Displays the number of messages in your global IMAP inbox by default. You can
define individual IMAP inboxes separately by passing arguments to this object.
Arguments are: "host user pass [-i interval (in seconds)] [-f 'folder'] [-p
port] [-e 'command'] [-r retries]". Default port is 143, default folder is 'IN-
BOX', default interval is 5 minutes, and default number of retries before giv-
ing up is 5. If the password is supplied as '*', you will be prompted to enter
the password when Conky starts.
imap_unseen (args)
Displays the number of unseen messages in your global IMAP inbox by default.
You can define individual IMAP inboxes separately by passing arguments to this
object. Arguments are: "host user pass [-i interval (in seconds)] [-f 'folder']
[-p port] [-e 'command'] [-r retries]". Default port is 143, default folder is
'INBOX', default interval is 5 minutes, and default number of retries before
giving up is 5. If the password is supplied as '*', you will be prompted to en-
ter the password when Conky starts.
include path
Loads the configfile at path, places the configsettings behind the configset-
tings in the orginal config and places the vars where the includevar stood.
ioscheduler disk
Prints the current ioscheduler used for the given disk name (i.e. e.g. "hda" or
"sdb")
kernel Kernel version
laptop_mode
The value of /proc/sys/vm/laptop_mode
lines textfile
Displays the number of lines in the given file
loadavg (1|2|3)
System load average, 1 is for past 1 minute, 2 for past 5 minutes and 3 for
past 15 minutes. Without argument, prints all three values separated by white-
space.
loadgraph (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (-l)
Load1 average graph, similar to xload, with optional colours in hex, minus the
#. Uses a logarithmic scale (to see small numbers) when you use the -l switch.
Takes the switch '-t' to use a temperature gradient, which makes the gradient
values change depending on the amplitude of a particular graph value (try it
and see).
lua function_name (function parameters)
Executes a Lua function with given parameters, then prints the returned string.
See also 'lua_load' on how to load scripts. Conky puts 'conky_' in front of
function_name to prevent accidental calls to the wrong function unless you put
you place 'conky_' in front of it yourself.
lua_bar (height, width) function_name (function parameters)
Executes a Lua function with given parameters and draws a bar. Expects result
value to be an integer between 0 and 100. See also 'lua_load' on how to load
scripts. Conky puts 'conky_' in front of function_name to prevent accidental
calls to the wrong function unless you put you place 'conky_' in front of it
yourself.
lua_gauge (height, width) function_name (function parameters)
Executes a Lua function with given parameters and draws a gauge. Expects result
value to be an integer between 0 and 100. See also 'lua_load' on how to load
scripts. Conky puts 'conky_' in front of function_name to prevent accidental
calls to the wrong function unless you put you place 'conky_' in front of it
yourself.
lua_graph function_name (height),(width) (gradient colour 1) (gradient colour 2)
(scale) (-t) (-l)
Executes a Lua function with and draws a graph. Expects result value to be any
number, and by default will scale to show the full range. See also 'lua_load'
on how to load scripts. Takes the switch '-t' to use a temperature gradient,
which makes the gradient values change depending on the amplitude of a particu-
lar graph value (try it and see). Conky puts 'conky_' in front of function_name
to prevent accidental calls to the wrong function unless you put you place
'conky_' in front of it yourself.
lua_parse function_name (function parameters)
Executes a Lua function with given parameters as per $lua, then parses and
prints the result value as per the syntax for Conky's TEXT section. See also
'lua_load' on how to load scripts. Conky puts 'conky_' in front of func-
tion_name to prevent accidental calls to the wrong function unless you put you
place 'conky_' in front of it yourself.
machine
Machine, i686 for example
mails (mailbox) (interval)
Mail count in the specified mailbox or your mail spool if not. Both mbox and
maildir type mailboxes are supported. You can use a program like fetchmail to
get mails from some server using your favourite protocol. See also new_mails.
mboxscan (-n number of messages to print) (-fw from width) (-sw subject width) mbox
Print a summary of recent messages in an mbox format mailbox. mbox parameter is
the filename of the mailbox (can be encapsulated using '"', ie. ${mboxscan -n
10 "/home/brenden/some box"}
mem Amount of memory in use
membar (height),(width)
Bar that shows amount of memory in use
memeasyfree
Amount of free memory including the memory that is very easily freed (buf-
fers/cache)
memfree
Amount of free memory
memgauge (height),(width)
Gauge that shows amount of memory in use (see cpugauge)
memgraph (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (-l)
Memory usage graph. Uses a logarithmic scale (to see small numbers) when you
use the -l switch. Takes the switch '-t' to use a temperature gradient, which
makes the gradient values change depending on the amplitude of a particular
graph value (try it and see).
memmax Total amount of memory
memperc
Percentage of memory in use
mixer (device)
Prints the mixer value as reported by the OS. On Linux, this variable uses the
OSS emulation, so you need the proper kernel module loaded. Default mixer is
"Vol", but you can specify one of the available OSS controls: "Vol", "Bass",
"Trebl", "Synth", "Pcm", "Spkr", "Line", "Mic", "CD", "Mix", "Pcm2 ", "Rec",
"IGain", "OGain", "Line1", "Line2", "Line3", "Digital1", "Digital2", "Digi-
tal3", "PhoneIn", "PhoneOut", "Video", "Radio" and "Monitor".
mixerbar (device)
Displays mixer value in a bar as reported by the OS. See docs for $mixer for
details on arguments.
mixerl (device)
Prints the left channel mixer value as reported by the OS. See docs for $mixer
for details on arguments.
mixerlbar (device)
Displays the left channel mixer value in a bar as reported by the OS. See docs
for $mixer for details on arguments.
mixerr (device)
Prints the right channel mixer value as reported by the OS. See docs for $mixer
for details on arguments.
mixerrbar (device)
Displays the right channel mixer value in a bar as reported by the OS. See docs
for $mixer for details on arguments.
moc_album
Album of the current MOC song
moc_artist
Artist of the current MOC song
moc_bitrate
Bitrate in the current MOC song
moc_curtime
Current time of the current MOC song
moc_file
File name of the current MOC song
moc_rate
Rate of the current MOC song
moc_song
The current song name being played in MOC.
moc_state
Current state of MOC; playing, stopped etc.
moc_timeleft
Time left in the current MOC song
moc_title
Title of the current MOC song
moc_totaltime
Total length of the current MOC song
monitor
Number of the monitor on which conky is running or the message "Not running in
X" if this is the case.
monitor_number
Number of monitors or the message "Not running in X" if this is the case.
mpd_album
Album in current MPD song
mpd_artist
Artist in current MPD song must be enabled at compile
mpd_bar (height),(width)
Bar of mpd's progress
mpd_bitrate
Bitrate of current song
mpd_date
Date of current song
mpd_elapsed
Song's elapsed time
mpd_file
Prints the file name of the current MPD song
mpd_length
Song's length
mpd_name
Prints the MPD name field
mpd_percent
Percent of song's progress
mpd_random
Random status (On/Off)
mpd_repeat
Repeat status (On/Off)
mpd_smart (max length)
Prints the song name in either the form "artist - title" or file name, depend-
ing on whats available
mpd_status
Playing, stopped, et cetera.
mpd_title (max length)
Title of current MPD song
mpd_track
Prints the MPD track field
mpd_vol
MPD's volume
nameserver (index)
Print a nameserver from /etc/resolv.conf. Index starts at and defaults to 0.
new_mails (mailbox) (interval)
Unread mail count in the specified mailbox or mail spool if not. Both mbox and
maildir type mailboxes are supported.
nodename
Hostname
nodename_short
Short hostname (same as 'hostname -s' shell command).
nvidia threshold temp ambient gpufreq memfreq imagequality
Nvidia graficcard support for the XNVCtrl library. Each option can be shortened
to the least significant part. Temperatures are printed as float, all other
values as integer.
threshold The thresholdtemperature at which the gpu slows down
temp Gives the gpu current temperature
ambient Gives current air temperature near GPU case
gpufreq Gives the current gpu frequency
memfreq Gives the current mem frequency
imagequality Which imagequality should be chosen by OpenGL applications
offset (pixels)
Move text over by N pixels. See also $voffset.
outlinecolor (color)
Change outline color
pb_battery item
If running on Apple powerbook/ibook, display information on battery status. The
item parameter specifies, what information to display. Exactly one item must be
specified. Valid items are:
status Display if battery is fully charged, charging, discharging or absent
(running on AC)
percent Display charge of battery in percent, if charging or discharging. Noth-
ing will be displayed, if battery is fully charged or absent.
time Display the time remaining until the battery will be fully charged or dis-
charged at current rate. Nothing is displayed, if battery is absent or if it's
present but fully charged and not discharging.
pid_chroot pid
Directory used as rootdirectory by the process (this will be "/" unless the
process did a chroot syscall)
pid_cmdline pid
Command line this process was invoked with
pid_cwd pid
Current working directory of the process
pid_environ pid varname
Contents of a environment-var of the process
pid_environ_list pid
List of environment-vars that the process can see
pid_exe pid
Path to executed command that started the process
pid_nice pid
The nice value of the process
pid_openfiles pid
List of files that the process has open
pid_parent pid
The pid of the parent of the process
pid_priority pid
The priority of the process (see 'priority' in "man 5 proc")
pid_read pid
Total number of bytes read by the process
pid_state pid
State of the process
pid_state_short pid
One of the chars in "RSDZTW" representing the state of the process where R is
running, S is sleeping in an interruptible wait, D is waiting in uninterrupt-
ible disk sleep, Z is zombie, T is traced or stopped (on a signal), and W is
paging
pid_stderr pid
Filedescriptor binded to the STDERR of the process
pid_stdin pid
Filedescriptor binded to the STDIN of the process
pid_stdout pid
Filedescriptor binded to the STDOUT of the process
pid_threads pid
Number of threads in process containing this thread
pid_thread_list pid
List with pid's from threads from this process
pid_time_kernelmode pid
Amount of time that the process has been scheduled in kernel mode in seconds
pid_time_usermode pid
Amount of time that the process has been scheduled in user mode in seconds
pid_time pid
Sum of $pid_time_kernelmode and $pid_time_usermode
pid_uid pid
The real uid of the process
pid_euid pid
The effective uid of the process
pid_suid pid
The saved set uid of the process
pid_fsuid pid
The file system uid of the process
pid_gid pid
The real gid of the process
pid_egid pid
The effective gid of the process
pid_sgid pid
The saved set gid of the process
pid_fsgid pid
The file system gid of the process
pid_vmpeak pid
Peak virtual memory size of the process
pid_vmsize pid
Virtual memory size of the process
pid_vmlck pid
Locked memory size of the process
pid_vmhwm pid
Peak resident set size ("high water mark") of the process
pid_vmrss pid
Resident set size of the process
pid_vmdata pid
Data segment size of the process
pid_vmstk pid
Stack segment size of the process
pid_vmexe pid
Text segment size of the process
pid_vmlib pid
Shared library code size of the process
pid_vmpte pid
Page table entries size of the process
pid_write pid
Total number of bytes written by the process
platform (dev) type n (factor offset)
Platform sensor from sysfs (Linux 2.6). Parameter dev may be omitted if you
have only one platform device. Platform type is either 'in' or 'vol' meaning
voltage; 'fan' meaning fan; 'temp' meaning temperature. Parameter n is number
of the sensor. See /sys/bus/platform/devices/ on your local computer. The op-
tional arguments 'factor' and 'offset' allow precalculation of the raw input,
which is being modified as follows: 'input = input * factor + offset'. Note
that they have to be given as decimal values (i.e. contain at least one decimal
place).
pop3_unseen (args)
Displays the number of unseen messages in your global POP3 inbox by default.
You can define individual POP3 inboxes separately by passing arguments to this
object. Arguments are: "host user pass [-i interval (in seconds)] [-p port] [-e
'command'] [-r retries]". Default port is 110, default interval is 5 minutes,
and default number of retries before giving up is 5. If the password is sup-
plied as '*', you will be prompted to enter the password when Conky starts.
pop3_used (args)
Displays the amount of space (in MiB, 2^20) used in your global POP3 inbox by
default. You can define individual POP3 inboxes separately by passing arguments
to this object. Arguments are: "host user pass [-i interval (in seconds)] [-p
port] [-e 'command'] [-r retries]". Default port is 110, default interval is 5
minutes, and default number of retries before giving up is 5. If the password
is supplied as '*', you will be prompted to enter the password when Conky
starts.
pre_exec shell command
Executes a shell command one time before conky displays anything and puts out-
put as text.
processes
Total processes (sleeping and running)
read_tcp (host) port
Connects to a tcp port on a host (default is localhost), reads every char
available at the moment and shows them.
replied_mails (maildir) (interval)
Number of mails marked as replied in the specified mailbox or mail spool if
not. Only maildir type mailboxes are supported, mbox type will return -1.
rss uri interval_in_minutes action (num_par (spaces_in_front))
Download and parse RSS feeds. The interval may be a floating point value
greater than 0, otherwise defaults to 15 minutes. Action may be one of the fol-
lowing: feed_title, item_title (with num par), item_desc (with num par) and
item_titles (when using this action and spaces_in_front is given conky places
that many spaces in front of each item). This object is threaded, and once a
thread is created it can't be explicitly destroyed. One thread will run for
each URI specified. You can use any protocol that Curl supports.
running_processes
Running processes (not sleeping), requires Linux 2.6
running_threads
Number of running (runnable) threads. Linux only.
scroll length (step) text
Scroll 'text' by 'step' characters showing 'length' number of characters at the
same time. The text may also contain variables. 'step' is optional and defaults
to 1 if not set. If a var creates output on multiple lines then the lines are
placed behind each other separated with a '|'-sign. If you change the textcolor
inside $scroll it will automatically have it's old value back at the end of
$scroll. The end and the start of text will be separated by 'length' number of
spaces.
seen_mails (maildir) (interval)
Number of mails marked as seen in the specified mailbox or mail spool if not.
Only maildir type mailboxes are supported, mbox type will return -1.
shadecolor (color)
Change shading color
smapi (ARGS)
when using smapi, display contents of the /sys/devices/platform/smapi directo-
ry. ARGS are either '(FILENAME)' or 'bat (INDEX) (FILENAME)' to display the
corresponding files' content. This is a very raw method of accessing the smapi
values. When available, better use one of the smapi_* variables instead.
smapi_bat_bar (INDEX),(height),(width)
when using smapi, display the remaining capacity of the battery with index IN-
DEX as a bar.
smapi_bat_perc (INDEX)
when using smapi, display the remaining capacity in percent of the battery with
index INDEX. This is a separate variable because it supports the 'use_spacer'
configuration option.
smapi_bat_power INDEX
when using smapi, display the current power of the battery with index INDEX in
watt. This is a separate variable because the original read out value is being
converted from mW. The sign of the output reflects charging (positive) or dis-
charging (negative) state.
smapi_bat_temp INDEX
when using smapi, display the current temperature of the battery with index IN-
DEX in degree Celsius. This is a separate variable because the original read
out value is being converted from milli degree Celsius.
sony_fanspeed
Displays the Sony VAIO fanspeed information if sony-laptop kernel support is
enabled. Linux only.
stippled_hr (space)
Stippled (dashed) horizontal line
swap Amount of swap in use
swapbar (height),(width)
Bar that shows amount of swap in use
swapfree
Amount of free swap
swapmax
Total amount of swap
swapperc
Percentage of swap in use
sysname
System name, Linux for example
tab (width, (start))
Puts a tab of the specified width, starting from column 'start'. The unit is
pixels for both arguments.
tail logfile lines (next_check)
Displays last N lines of supplied text file. The file is checked every
'next_check' update. If next_check is not supplied, Conky defaults to 2. Max of
30 lines can be displayed, or until the text buffer is filled.
tcp_portmon port_begin port_end item (index)
TCP port (both IPv6 and IPv4) monitor for specified local ports. Port numbers
must be in the range 1 to 65535. Valid items are:
count Total number of connections in the range
rip Remote ip address
rhost Remote host name
rport Remote port number
rservice Remote service name from /etc/services
lip Local ip address
lhost Local host name
lport Local port number
lservice Local service name from /etc/services
The connection index provides you with access to each connection in the port
monitor. The monitor will return information for index values from 0 to n-1
connections. Values higher than n-1 are simply ignored. For the "count" item,
the connection index must be omitted. It is required for all other items.
Examples:
${tcp_portmon 6881 6999 count} Displays the number of connections in the bit-
torrent port range
${tcp_portmon 22 22 rip 0} Displays the remote host ip of the first sshd con-
nection
${tcp_portmon 22 22 rip 9} Displays the remote host ip of the tenth sshd con-
nection
${tcp_portmon 1 1024 rhost 0} Displays the remote host name of the first con-
nection on a privileged port
${tcp_portmon 1 1024 rport 4} Displays the remote host port of the fifth con-
nection on a privileged port
${tcp_portmon 1 65535 lservice 14} Displays the local service name of the fif-
teenth connection in the range of all ports
Note that port monitor variables which share the same port range actually refer
to the same monitor, so many references to a single port range for different
items and different indexes all use the same monitor internally. In other
words, the program avoids creating redundant monitors.
templateN (arg1) (arg2) (arg3 ...)
Evaluate the content of the templateN configuration variable (where N is a val-
ue between 0 and 9, inclusively), applying substitutions as described in the
documentation of the corresponding configuration variable. The number of argu-
ments is optional, but must match the highest referred index in the template.
You can use the same special sequences in each argument as the ones valid for a
template definition, e.g. to allow an argument to contain a whitespace. Also
simple nesting of templates is possible this way.
Here are some examples of template definitions:
template0 $\1\2
template1 \1: ${fs_used \2} / ${fs_size \2}
template2 \1 \2
The following list shows sample usage of the templates defined above, with the
equivalent syntax when not using any template at all:
using template same without template
------------------------------------------------------------------
${template0 node name} $nodename
${template1 root /} root: ${fs_free /} / ${fs_size
/}
${template1 ${template2\ disk\ disk root: ${fs_free /} /
root} /} ${fs_size /}
texeci interval command
Runs a command at an interval inside a thread and displays the output. Same as
$execi, except the command is run inside a thread. Use this if you have a slow
script to keep Conky updating. You should make the interval slightly longer
then the time it takes your script to execute. For example, if you have a
script that take 5 seconds to execute, you should make the interval at least 6
seconds. See also $execi. This object will clean up the thread when it is de-
stroyed, so it can safely be used in a nested fashion, though it may not pro-
duce the desired behaviour if used this way.
threads
Total threads
time (format)
Local time, see man strftime to get more information about format
to_bytes size
If 'size' is a number followed by a size-unit (kilobyte,mb,GiB,...) then it
converts the size to bytes and shows it without unit, otherwise it just shows
'size'.
top type num
This takes arguments in the form:top (name) (number) Basically, processes are
ranked from highest to lowest in terms of cpu usage, which is what (num) repre-
sents. The types are: "name", "pid", "cpu", "mem", "mem_res", "mem_vsize",
"time", "uid", "user", "io_perc", "io_read" and "io_write". There can be a max
of 10 processes listed.
top_io type num
Same as top, except sorted by the amount of I/O the process has done during the
update interval
top_mem type num
Same as top, except sorted by mem usage instead of cpu
top_time type num
Same as top, except sorted by total CPU time instead of current CPU usage
totaldown (net)
Total download, overflows at 4 GB on Linux with 32-bit arch and there doesn't
seem to be a way to know how many times it has already done that before conky
has started.
totalup (net)
Total upload, this one too, may overflow
trashed_mails (maildir) (interval)
Number of mails marked as trashed in the specified mailbox or mail spool if
not. Only maildir type mailboxes are supported, mbox type will return -1.
tztime (timezone (format))
Local time for specified timezone, see man strftime to get more information
about format. The timezone argument is specified in similar fashion as TZ envi-
ronment variable. For hints, look in /usr/share/zoneinfo. e.g. US/Pacific, Eu-
rope/Zurich, etc.
gid_name gid
Name of group with this gid
uid_name uid
Username of user with this uid
unflagged_mails (maildir) (interval)
Number of mails not marked as flagged in the specified mailbox or mail spool if
not. Only maildir type mailboxes are supported, mbox type will return -1.
unforwarded_mails (maildir) (interval)
Number of mails not marked as forwarded in the specified mailbox or mail spool
if not. Only maildir type mailboxes are supported, mbox type will return -1.
unreplied_mails (maildir) (interval)
Number of mails not marked as replied in the specified mailbox or mail spool if
not. Only maildir type mailboxes are supported, mbox type will return -1.
unseen_mails (maildir) (interval)
Number of new or unseen mails in the specified mailbox or mail spool if not.
Only maildir type mailboxes are supported, mbox type will return -1.
updates Number of updates
for debugging
upspeed (net)
Upload speed in suitable IEC units
upspeedf (net)
Upload speed in KiB with one decimal
upspeedgraph (netdev) (height),(width) (gradient colour 1) (gradient colour 2) (scale)
(-t) (-l)
Upload speed graph, colours defined in hex, minus the #. If scale is non-zero,
it becomes the scale for the graph. Uses a logarithmic scale (to see small num-
bers) when you use the -l switch. Takes the switch '-t' to use a temperature
gradient, which makes the gradient values change depending on the amplitude of
a particular graph value (try it and see).
uptime Uptime
uptime_short
Uptime in a shorter format
user_names
Lists the names of the users logged in
user_number
Number of users logged in
user_terms
Lists the consoles in use
user_times
Lists how long users have been logged in for
user_time console
Lists how long the user for the given console has been logged in for
utime (format)
Display time in UTC (universal coordinate time).
voffset (pixels)
Change vertical offset by N pixels. Negative values will cause text to overlap.
See also $offset.
voltage_mv (n)
Returns CPU #n's voltage in mV. CPUs are counted from 1. If omitted, the param-
eter defaults to 1.
voltage_v (n)
Returns CPU #n's voltage in V. CPUs are counted from 1. If omitted, the parame-
ter defaults to 1.
weather URI locID data_type (interval_in_minutes)
Download, parse and display METAR data.
For the 'URI', there are two possibilities:
http://weather.noaa.gov/pub/data/observations/metar/stations/
http://xoap.weather.com/weather/local/
The first one is free to use but the second requires you to register and obtain
your partner ID and license key. These two must be written, separated by a
space, into a file called .xoaprc which needs to be placed into your home di-
rectory.
'locID' must be a valid location identifier for the required uri. For the NOAA
site this must be a valid ICAO (see for instance https://pi-
lotweb.nas.faa.gov/qryhtml/icao/). For the weather.com site this must be a
valid location ID (see for instance http://aspnetresources.com/tools/locid.as-
px).
'data_type' must be one of the following:
last_update The date and time stamp of the data. The result depends on the URI
used. For the NOAA site it is date (yyyy/mm/dd) and UTC time. For the weath-
er.com one it is date ([m]m/[d]d/yy) and Local Time of the station.
temperature
Air temperature (you can use the 'temperature_unit' config setting to change
units)
cloud_cover
The highest cloud cover status
pressure
Air pressure in millibar
wind_speed
Wind speed in km/h
wind_dir
Wind direction
wind_dir_DEG
Compass wind direction
humidity
Relative humidity in %
weather
Any relevant weather event (rain, snow, etc.). This is not used if you are
querying the weather.com site since this data is aggregated into the cloud_cov-
er one
icon
Weather icon (only for www.weather.com). Can be used together with the icon kit
provided upon registering to their service.
'delay_in_minutes' (optional, default 30) cannot be less than 30 minutes.
This object is threaded, and once a thread is created it can't be explicitly
destroyed. One thread will run for each URI specified.
Note that these variables are still EXPERIMENTAL and can be subject to many fu-
ture changes.
weather_forecast URI locID day data_type (interval_in_minutes)
Download, parse and display weather forecast data for a given day (daytime on-
ly).
For the 'URI', for the time being only http://xoap.weather.com/weather/local/
is supported. See 'weather' above for details of usage
'locID', see 'weather' above.
'day' is a number from 0 (today) to 4 (3 days after tomorrow).
'data_type' must be one of the following:
day Day of the week
date Date, in the form MMM DD (ie. Jul 14)
low Minimun temperature (you can use the 'temperature_unit' config setting to
change units)
hi Maximum temperature (you can use the 'temperature_unit' config setting to
change units)
icon Weather icon. Can be used together with the icon kit provided upon regis-
tering to the weather.com service
forecast Weather forecast (sunny, rainy, etc.)
wind_speed Wind speed in km/h
wind_dir Wind direction
wind_dir_DEG Compass wind direction
humidity Relative humidity in %
precipitation Probability of having a precipitation (in %)
'delay_in_minutes' (optional, default 210) cannot be lower than 210 min.
This object is threaded, and once a thread is created it can't be explicitly
destroyed. One thread will run for each URI specified. You can use any protocol
that Curl supports.
Note that these variables are still EXPERIMENTAL and can be subject to many fu-
ture changes.
wireless_ap (net)
Wireless access point MAC address (Linux only)
wireless_bitrate (net)
Wireless bitrate (ie 11 Mb/s) (Linux only)
wireless_essid (net)
Wireless access point ESSID (Linux only)
wireless_link_bar (height),(width) (net)
Wireless link quality bar (Linux only)
wireless_link_qual (net)
Wireless link quality (Linux only)
wireless_link_qual_max (net)
Wireless link quality maximum value (Linux only)
wireless_link_qual_perc (net)
Wireless link quality in percents (Linux only)
wireless_mode (net)
Wireless mode (Managed/Ad-Hoc/Master) (Linux only)
words textfile
Displays the number of words in the given file
xmms2_album
Album in current XMMS2 song
xmms2_artist
Artist in current XMMS2 song
xmms2_bar (height),(width)
Bar of XMMS2's progress
xmms2_bitrate
Bitrate of current song
xmms2_comment
Comment in current XMMS2 song
xmms2_date
Returns song's date.
xmms2_duration
Duration of current song
xmms2_elapsed
Song's elapsed time
xmms2_genre
Genre in current XMMS2 song
xmms2_id
XMMS2 id of current song
xmms2_percent
Percent of song's progress
xmms2_playlist
Returns the XMMS2 playlist.
xmms2_size
Size of current song
xmms2_smart
Prints the song name in either the form "artist - title" or file name, depend-
ing on whats available
xmms2_status
XMMS2 status (Playing, Paused, Stopped, or Disconnected)
xmms2_timesplayed
Number of times a song was played (presumably).
xmms2_title
Title in current XMMS2 song
xmms2_tracknr
Track number in current XMMS2 song
xmms2_url
Full path to current song
LUA API
Conky features a Lua Programming API, and also ships with Lua bindings for some useful
libraries. Conky defines certain global functions and variables which can be accessed
from Lua code running in Conky.
To use Lua Conky, you first need to make sure you have a version of Conky with Lua
support enabled (``conky -v'' will report this). Scripts must first be loaded using
the lua_load configuration option. You then call functions in Lua via Conky's $lua,
$lua_read, and Lua hooks.
Be careful when creating threaded objects through the Lua API. You could wind up with
a whole bunch of threads running if a thread is created with each iteration.
At this time, the Lua API should not be considered stable and may change drastically
from one release to another as it matures.
NOTE: In order to accommodate certain features in the cairo library's API, Conky will
export a few additional functions for the creation of certain structures. These are
documented below.
conky_parse(string) function
This function takes a string that is evaluated as per Conky's TEXT section, and
then returns a string with the result.
conky_set_update_interval(number) function
Sets Conky's update interval (in seconds) to 'number'.
conky_window table
This table contains some information about Conky's window. The following table
describes the values contained:
drawable Window's drawable (Xlib Drawable), requires Lua extras enabled at com-
pile time.
visual Window's visual (Xlib Visual), requires Lua extras enabled at compile
time.
display Window's display (Xlib Display), requires Lua extras enabled at compile
time.
width Window width (in pixels).
height Window height (in pixels).
border_inner_margin Window's inner border margin (in pixels).
border_outer_margin Window's outer border margin (in pixels).
border_width Window's border width (in pixels).
text_start_x The x component of the starting coordinate of text drawing.
text_start_y The y component of the starting coordinate of text drawing.
text_width The width of the text drawing region.
text_height The height of the text drawing region.
NOTE: This table is only defined when X support is enabled.
conky_info table
This table contains some information about Conky's internal data. The following
table describes the values contained:
update_interval Conky's update interval (in seconds).
uptime System uptime, in seconds.
conky_build_info string
A string containing the build info for this particular instance of Conky, in-
cluding the version, build date, and architecture.
conky_build_date string
A string containing the build date for this particular instance of Conky.
conky_build_arch string
A string containing the build architecture for this particular instance of
Conky.
conky_version string
A string containing the version of the current instance of Conky.
conky_config string
A string containing the path of the current Conky configuration file.
cairo_text_extents_t:create() function
Call this function to return a new cairo_text_extents_t structure. A creation
function for this structure is not provided by the cairo API. After calling
this, you should use tolua.takeownership() on the return value to ensure owner-
ship is passed properly.
cairo_font_extents_t:create() function
Call this function to return a new cairo_font_extents_t structure. A creation
function for this structure is not provided by the cairo API. After calling
this, you should use tolua.takeownership() on the return value to ensure owner-
ship is passed properly.
cairo_matrix_t:create() function
Call this function to return a new cairo_matrix_t structure. A creation func-
tion for this structure is not provided by the cairo API. After calling this,
you should use tolua.takeownership() on the return value to ensure ownership is
passed properly.
EXAMPLES
conky -t '${time %D %H:%M}' -o -u 30
Start Conky in its own window with date and clock as text and 30 sec update in-
terval.
conky -a top_left -x 5 -y 500 -d
Start Conky to background at coordinates (5, 500).
conky -C > ~/.conkyrc
Do not start Conky, but have it output the builtin default config file to
~/.conkyrc for later customising.
FILES
${sysconfdir}/conky/conky.conf
Default system-wide configuration file. The value of ${sysconfdir} depends on
the compile-time options (most likely /etc).
~/.conkyrc
Default personal configuration file.
BUGS
Drawing to root or some other desktop window directly doesn't work with all window
managers. Especially doesn't work well with Gnome and it has been reported that it
doesn't work with KDE either. Nautilus can be disabled from drawing to desktop with
program gconf-editor. Uncheck show_desktop in /apps/nautilus/preferences/. There is -w
switch in Conky to set some specific window id. You might find xwininfo -tree useful
to find the window to draw to. You can also use -o argument which makes Conky to cre-
ate its own window. If you do try running Conky in its own window, be sure to read up
on the own_window_type settings and experiment.
SEE ALSO
-http://conky.sourceforge.net/-
-http://www.sourceforge.net/projects/conky-
-http://wiki.conky.be-
#conky on irc.freenode.net
COPYING
Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. Any original torsmo
code is licensed under the BSD license (see LICENSE.BSD for a copy). All code written
since the fork of torsmo is licensed under the GPL (see LICENSE.GPL for a copy), ex-
cept where noted differently (such as in portmon code, timed thread code, and auda-
cious code which are LGPL, and prss which is an MIT-style license).
AUTHORS
The Conky dev team (see AUTHORS for a full list of contributors).
2012-05-03 conky(1)
|