├── .clang-format ├── .clang-tidy ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── 3rdparty └── toluapp │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── INSTALL │ ├── Makefile │ ├── README-5.1 │ ├── README.md │ ├── SConstruct │ ├── cmake │ ├── dist.cmake │ └── lua.cmake │ ├── config_linux.py │ ├── config_msvc.py │ ├── config_posix.py │ ├── custom-5.1.py │ ├── debian │ ├── README │ ├── README.Debian │ ├── changelog │ ├── compat │ ├── conffiles.ex │ ├── control │ ├── copyright │ ├── cron.d.ex │ ├── dirs │ ├── docs │ ├── emacsen-install.ex │ ├── emacsen-remove.ex │ ├── emacsen-startup.ex │ ├── init.d.ex │ ├── manpage.1.ex │ ├── manpage.sgml.ex │ ├── manpage.xml.ex │ ├── menu.ex │ ├── postinst.ex │ ├── postrm.ex │ ├── preinst.ex │ ├── prerm.ex │ ├── rules │ ├── tolua++-default.ex │ ├── tolua++.doc-base.EX │ └── watch.ex │ ├── dist.info │ ├── doc │ ├── index.html │ ├── tolua++.html │ └── toluapp.gif │ ├── include │ └── tolua++.h │ ├── libtoluapp.def │ ├── src │ ├── bin │ │ ├── SCsub │ │ ├── lua │ │ │ ├── all.lua │ │ │ ├── array.lua │ │ │ ├── basic.lua │ │ │ ├── class.lua │ │ │ ├── clean.lua │ │ │ ├── code.lua │ │ │ ├── compat-5.1.lua │ │ │ ├── compat.lua │ │ │ ├── container.lua │ │ │ ├── custom.lua │ │ │ ├── declaration.lua │ │ │ ├── define.lua │ │ │ ├── doit.lua │ │ │ ├── enumerate.lua │ │ │ ├── feature.lua │ │ │ ├── function.lua │ │ │ ├── module.lua │ │ │ ├── namespace.lua │ │ │ ├── operator.lua │ │ │ ├── package.lua │ │ │ ├── template_class.lua │ │ │ ├── typedef.lua │ │ │ ├── variable.lua │ │ │ └── verbatim.lua │ │ ├── tolua.c │ │ ├── tolua_scons.pkg │ │ ├── toluabind.c │ │ ├── toluabind.h │ │ ├── toluabind_default.c │ │ └── toluabind_default.h │ ├── lib │ │ ├── SCsub │ │ ├── tolua_event.c │ │ ├── tolua_event.h │ │ ├── tolua_is.c │ │ ├── tolua_map.c │ │ ├── tolua_push.c │ │ └── tolua_to.c │ └── tests │ │ ├── SCsub │ │ ├── tarray.c │ │ ├── tarray.h │ │ ├── tarray.lua │ │ ├── tarray.pkg │ │ ├── tarraybind.c │ │ ├── tclass.cpp │ │ ├── tclass.h │ │ ├── tclass.lua │ │ ├── tclass.pkg │ │ ├── tconstant.h │ │ ├── tconstant.lua │ │ ├── tconstant.pkg │ │ ├── tdirective.lua │ │ ├── tdirective.pkg │ │ ├── tdirectivebind.c │ │ ├── tdirectivelua.lua │ │ ├── tdirectivepkg.pkg │ │ ├── tfunction.h │ │ ├── tfunction.lua │ │ ├── tfunction.pkg │ │ ├── tmodule.c │ │ ├── tmodule.h │ │ ├── tmodule.lua │ │ ├── tmodule.pkg │ │ ├── tmodulebind.c │ │ ├── tnamespace.h │ │ ├── tnamespace.lua │ │ ├── tnamespace.pkg │ │ ├── tvariable.c │ │ ├── tvariable.h │ │ ├── tvariable.lua │ │ ├── tvariable.pkg │ │ └── tvariablebind.c │ └── win32 │ └── vc7 │ ├── toluapp.sln │ └── toluapp.vcproj ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── LICENSE ├── LICENSE.BSD ├── README.cmake ├── README.docker ├── README.md ├── appimage ├── build.sh ├── pubkey.asc └── secret.gpg.enc ├── bin ├── changelog2html.py ├── check-style.sh ├── check_docs.py ├── clang-tidy-diff.py ├── run-clang-format.py └── text2c.sh ├── cmake ├── Catch.cmake ├── CatchAddTests.cmake ├── CodeCoverage.cmake ├── Conky.cmake ├── ConkyBuildOptions.cmake ├── ConkyCPackSetup.cmake ├── ConkyPlatformChecks.cmake ├── Docbook.cmake ├── FindClangFormat.cmake ├── FindClangTidy.cmake ├── FindXinerama.cmake ├── ToLua.cmake ├── build.h.in ├── clang-format.cmake ├── clang-tidy.cmake ├── config.h.in └── scripts │ ├── clang-format-check-changed │ └── clang-format-check-changed.py ├── conky.desktop ├── data ├── CMakeLists.txt ├── conky-dfly-smp.conf ├── conky.conf └── conky_no_x11.conf ├── doc ├── CMakeLists.txt ├── README.docs ├── command_options.xml ├── config_settings.xml ├── config_settings.xsl ├── conky-howto.xml ├── docbook-xml │ ├── ChangeLog │ ├── VERSION.xsl │ ├── calstblx.dtd │ ├── common │ │ ├── addns.xsl │ │ ├── af.xml │ │ ├── am.xml │ │ ├── ar.xml │ │ ├── as.xml │ │ ├── ast.xml │ │ ├── autoidx-kimber.xsl │ │ ├── autoidx-kosek.xsl │ │ ├── az.xml │ │ ├── bg.xml │ │ ├── bn.xml │ │ ├── bn_in.xml │ │ ├── bs.xml │ │ ├── ca.xml │ │ ├── charmap.xml │ │ ├── charmap.xsl │ │ ├── common.xml │ │ ├── common.xsl │ │ ├── cs.xml │ │ ├── cy.xml │ │ ├── da.xml │ │ ├── de.xml │ │ ├── el.xml │ │ ├── en.xml │ │ ├── entities.ent │ │ ├── eo.xml │ │ ├── es.xml │ │ ├── et.xml │ │ ├── eu.xml │ │ ├── fa.xml │ │ ├── fi.xml │ │ ├── fr.xml │ │ ├── ga.xml │ │ ├── gentext.xsl │ │ ├── gl.xml │ │ ├── gu.xml │ │ ├── he.xml │ │ ├── hi.xml │ │ ├── hr.xml │ │ ├── hu.xml │ │ ├── id.xml │ │ ├── insertfile.xsl │ │ ├── is.xml │ │ ├── it.xml │ │ ├── ja.xml │ │ ├── ka.xml │ │ ├── kn.xml │ │ ├── ko.xml │ │ ├── ky.xml │ │ ├── l10n.dtd │ │ ├── l10n.xml │ │ ├── l10n.xsl │ │ ├── la.xml │ │ ├── labels.xsl │ │ ├── lt.xml │ │ ├── lv.xml │ │ ├── ml.xml │ │ ├── mn.xml │ │ ├── mr.xml │ │ ├── nb.xml │ │ ├── nds.xml │ │ ├── nl.xml │ │ ├── nn.xml │ │ ├── olink.xsl │ │ ├── or.xml │ │ ├── pa.xml │ │ ├── pi.xml │ │ ├── pi.xsl │ │ ├── pl.xml │ │ ├── pt.xml │ │ ├── pt_br.xml │ │ ├── refentry.xml │ │ ├── refentry.xsl │ │ ├── ro.xml │ │ ├── ru.xml │ │ ├── sk.xml │ │ ├── sl.xml │ │ ├── sq.xml │ │ ├── sr.xml │ │ ├── sr_Latn.xml │ │ ├── stripns.xsl │ │ ├── subtitles.xsl │ │ ├── sv.xml │ │ ├── ta.xml │ │ ├── table.xsl │ │ ├── targetdatabase.dtd │ │ ├── targets.xsl │ │ ├── te.xml │ │ ├── th.xml │ │ ├── titles.xsl │ │ ├── tl.xml │ │ ├── tr.xml │ │ ├── uk.xml │ │ ├── ur.xml │ │ ├── utility.xml │ │ ├── utility.xsl │ │ ├── vi.xml │ │ ├── xh.xml │ │ ├── zh.xml │ │ ├── zh_cn.xml │ │ └── zh_tw.xml │ ├── dbcentx.mod │ ├── dbgenent.mod │ ├── dbhierx.mod │ ├── dbnotnx.mod │ ├── dbpoolx.mod │ ├── docbook.cat │ ├── docbookx.dtd │ ├── ent │ │ ├── isoamsa.ent │ │ ├── isoamsb.ent │ │ ├── isoamsc.ent │ │ ├── isoamsn.ent │ │ ├── isoamso.ent │ │ ├── isoamsr.ent │ │ ├── isobox.ent │ │ ├── isocyr1.ent │ │ ├── isocyr2.ent │ │ ├── isodia.ent │ │ ├── isogrk1.ent │ │ ├── isogrk2.ent │ │ ├── isogrk3.ent │ │ ├── isogrk4.ent │ │ ├── isolat1.ent │ │ ├── isolat2.ent │ │ ├── isonum.ent │ │ ├── isopub.ent │ │ └── isotech.ent │ ├── html │ │ ├── admon.xsl │ │ ├── annotations.xsl │ │ ├── autoidx-kimber.xsl │ │ ├── autoidx-kosek.xsl │ │ ├── autoidx-ng.xsl │ │ ├── autoidx.xsl │ │ ├── autotoc.xsl │ │ ├── biblio-iso690.xsl │ │ ├── biblio.xsl │ │ ├── block.xsl │ │ ├── callout.xsl │ │ ├── catalog.xml │ │ ├── changebars.xsl │ │ ├── chunk-changebars.xsl │ │ ├── chunk-code.xsl │ │ ├── chunk-common.xsl │ │ ├── chunk.xsl │ │ ├── chunker.xsl │ │ ├── chunkfast.xsl │ │ ├── chunktoc.xsl │ │ ├── component.xsl │ │ ├── division.xsl │ │ ├── docbook.css.xml │ │ ├── docbook.xsl │ │ ├── ebnf.xsl │ │ ├── footnote.xsl │ │ ├── formal.xsl │ │ ├── glossary.xsl │ │ ├── graphics.xsl │ │ ├── highlight.xsl │ │ ├── html-rtf.xsl │ │ ├── html.xsl │ │ ├── htmltbl.xsl │ │ ├── index.xsl │ │ ├── info.xsl │ │ ├── inline.xsl │ │ ├── its.xsl │ │ ├── keywords.xsl │ │ ├── lists.xsl │ │ ├── maketoc.xsl │ │ ├── manifest.xsl │ │ ├── math.xsl │ │ ├── oldchunker.xsl │ │ ├── onechunk.xsl │ │ ├── param.xml │ │ ├── param.xsl │ │ ├── pi.xml │ │ ├── pi.xsl │ │ ├── profile-chunk-code.xsl │ │ ├── profile-chunk.xsl │ │ ├── profile-docbook.xsl │ │ ├── profile-onechunk.xsl │ │ ├── publishers.xsl │ │ ├── qandaset.xsl │ │ ├── refentry.xsl │ │ ├── sections.xsl │ │ ├── synop.xsl │ │ ├── table.xsl │ │ ├── task.xsl │ │ ├── titlepage.templates.xml │ │ ├── titlepage.templates.xsl │ │ ├── titlepage.xsl │ │ ├── toc.xsl │ │ ├── verbatim.xsl │ │ └── xref.xsl │ ├── htmltblx.mod │ ├── lib │ │ └── lib.xsl │ └── soextblx.dtd ├── docgen.sh ├── docs.xml ├── lua.xml ├── lua.xsl ├── variables.xml └── variables.xsl ├── extras ├── convert.lua ├── gedit │ ├── README.md │ └── conky.lang ├── nano │ ├── README │ └── conky.nanorc └── vim │ ├── README │ ├── ftdetect │ └── conkyrc.vim │ └── syntax │ └── conkyrc.vim ├── forConkyX ├── 3rdparty │ └── toluapp │ │ ├── CMakeScripts │ │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeDebug │ │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel │ │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeRelease │ │ ├── ReRunCMake.make │ │ ├── XCODE_DEPEND_HELPER.make │ │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeDebug │ │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel │ │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeRelease │ │ ├── install_postBuildPhase.makeDebug │ │ ├── install_postBuildPhase.makeMinSizeRel │ │ ├── install_postBuildPhase.makeRelWithDebInfo │ │ ├── install_postBuildPhase.makeRelease │ │ ├── package_postBuildPhase.makeDebug │ │ ├── package_postBuildPhase.makeMinSizeRel │ │ ├── package_postBuildPhase.makeRelWithDebInfo │ │ └── package_postBuildPhase.makeRelease │ │ ├── Debug │ │ └── toluapp │ │ ├── cmake_install.cmake │ │ ├── conky.build │ │ └── Debug │ │ │ ├── toluapp.build │ │ │ ├── Objects-normal │ │ │ │ └── x86_64 │ │ │ │ │ ├── tolua.d │ │ │ │ │ ├── tolua.dia │ │ │ │ │ ├── tolua.o │ │ │ │ │ ├── toluabind.d │ │ │ │ │ ├── toluabind.dia │ │ │ │ │ ├── toluabind.o │ │ │ │ │ ├── toluapp.LinkFileList │ │ │ │ │ └── toluapp_dependency_info.dat │ │ │ └── dgph │ │ │ └── toluapp_lib_static.build │ │ │ ├── Objects-normal │ │ │ └── x86_64 │ │ │ │ ├── tolua_event.d │ │ │ │ ├── tolua_event.dia │ │ │ │ ├── tolua_event.o │ │ │ │ ├── tolua_is.d │ │ │ │ ├── tolua_is.dia │ │ │ │ ├── tolua_is.o │ │ │ │ ├── tolua_map.d │ │ │ │ ├── tolua_map.dia │ │ │ │ ├── tolua_map.o │ │ │ │ ├── tolua_push.d │ │ │ │ ├── tolua_push.dia │ │ │ │ ├── tolua_push.o │ │ │ │ ├── tolua_to.d │ │ │ │ ├── tolua_to.dia │ │ │ │ ├── tolua_to.o │ │ │ │ └── toluapp.LinkFileList │ │ │ └── dgph │ │ └── toluapp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings ├── CMakeScripts │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeDebug │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo │ ├── ALL_BUILD_cmakeRulesBuildPhase.makeRelease │ ├── ReRunCMake.make │ ├── XCODE_DEPEND_HELPER.make │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeDebug │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo │ ├── ZERO_CHECK_cmakeRulesBuildPhase.makeRelease │ ├── install_postBuildPhase.makeDebug │ ├── install_postBuildPhase.makeMinSizeRel │ ├── install_postBuildPhase.makeRelWithDebInfo │ ├── install_postBuildPhase.makeRelease │ ├── package_postBuildPhase.makeDebug │ ├── package_postBuildPhase.makeMinSizeRel │ ├── package_postBuildPhase.makeRelWithDebInfo │ └── package_postBuildPhase.makeRelease ├── CPackConfig.cmake ├── CPackSourceConfig.cmake ├── cmake_install.cmake ├── config.h ├── conky.build │ └── Debug │ │ ├── ALL_BUILD.build │ │ ├── Script-0CE06630A11048B691E1B69C.sh │ │ └── dgph │ │ └── ZERO_CHECK.build │ │ ├── Script-EB2023D245C74709BB91CDE7.sh │ │ └── dgph ├── conky.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── npyl.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── npyl.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── data │ ├── CMakeScripts │ │ ├── convertconf_cmakeRulesBuildPhase.makeDebug │ │ ├── convertconf_cmakeRulesBuildPhase.makeMinSizeRel │ │ ├── convertconf_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ ├── convertconf_cmakeRulesBuildPhase.makeRelease │ │ ├── defconfig_cmakeRulesBuildPhase.makeDebug │ │ ├── defconfig_cmakeRulesBuildPhase.makeMinSizeRel │ │ ├── defconfig_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ └── defconfig_cmakeRulesBuildPhase.makeRelease │ ├── cmake_install.cmake │ ├── conky.build │ │ └── Debug │ │ │ ├── convertconf.build │ │ │ ├── Script-DAB8A8CDCC064A19A10BBDA0.sh │ │ │ └── dgph │ │ │ └── defconfig.build │ │ │ ├── Script-A2C5498FB2C34850BA9C4A32.sh │ │ │ └── dgph │ ├── convertconf.h │ └── defconfig.h ├── doc │ └── cmake_install.cmake ├── lua │ └── cmake_install.cmake └── src │ ├── Debug │ └── conky │ ├── cmake_install.cmake │ └── conky.build │ └── Debug │ └── conky.build │ ├── Objects-normal │ └── x86_64 │ │ ├── algebra.d │ │ ├── algebra.dia │ │ ├── algebra.o │ │ ├── apcupsd.d │ │ ├── apcupsd.dia │ │ ├── apcupsd.o │ │ ├── c++wrap.d │ │ ├── c++wrap.dia │ │ ├── c++wrap.o │ │ ├── ccurl_thread.d │ │ ├── ccurl_thread.dia │ │ ├── ccurl_thread.o │ │ ├── cmus.d │ │ ├── cmus.dia │ │ ├── cmus.o │ │ ├── colours.d │ │ ├── colours.dia │ │ ├── colours.o │ │ ├── combine.d │ │ ├── combine.dia │ │ ├── combine.o │ │ ├── common.d │ │ ├── common.dia │ │ ├── common.o │ │ ├── conky.LinkFileList │ │ ├── conky.d │ │ ├── conky.dia │ │ ├── conky.o │ │ ├── conky_dependency_info.dat │ │ ├── core.d │ │ ├── core.dia │ │ ├── core.o │ │ ├── cpu.d │ │ ├── cpu.dia │ │ ├── cpu.o │ │ ├── darwin.d │ │ ├── darwin.dia │ │ ├── darwin.o │ │ ├── data-source.d │ │ ├── data-source.dia │ │ ├── data-source.o │ │ ├── diskio.d │ │ ├── diskio.dia │ │ ├── diskio.o │ │ ├── entropy.d │ │ ├── entropy.dia │ │ ├── entropy.o │ │ ├── eve.d │ │ ├── eve.dia │ │ ├── eve.o │ │ ├── exec.d │ │ ├── exec.dia │ │ ├── exec.o │ │ ├── fonts.d │ │ ├── fonts.dia │ │ ├── fonts.o │ │ ├── fs.d │ │ ├── fs.dia │ │ ├── fs.o │ │ ├── imlib2.d │ │ ├── imlib2.dia │ │ ├── imlib2.o │ │ ├── libmpdclient.d │ │ ├── libmpdclient.dia │ │ ├── libmpdclient.o │ │ ├── llua.d │ │ ├── llua.dia │ │ ├── llua.o │ │ ├── lua-config.d │ │ ├── lua-config.dia │ │ ├── lua-config.o │ │ ├── luamm.d │ │ ├── luamm.dia │ │ ├── luamm.o │ │ ├── mail.d │ │ ├── mail.dia │ │ ├── mail.o │ │ ├── main.d │ │ ├── main.dia │ │ ├── main.o │ │ ├── mboxscan.d │ │ ├── mboxscan.dia │ │ ├── mboxscan.o │ │ ├── misc.d │ │ ├── misc.dia │ │ ├── misc.o │ │ ├── moc.d │ │ ├── moc.dia │ │ ├── moc.o │ │ ├── mpd.d │ │ ├── mpd.dia │ │ ├── mpd.o │ │ ├── nc.d │ │ ├── nc.dia │ │ ├── nc.o │ │ ├── net_stat.d │ │ ├── net_stat.dia │ │ ├── net_stat.o │ │ ├── prioqueue.d │ │ ├── prioqueue.dia │ │ ├── prioqueue.o │ │ ├── proc.d │ │ ├── proc.dia │ │ ├── proc.o │ │ ├── read_tcpip.d │ │ ├── read_tcpip.dia │ │ ├── read_tcpip.o │ │ ├── scroll.d │ │ ├── scroll.dia │ │ ├── scroll.o │ │ ├── setting.d │ │ ├── setting.dia │ │ ├── setting.o │ │ ├── specials.d │ │ ├── specials.dia │ │ ├── specials.o │ │ ├── tailhead.d │ │ ├── tailhead.dia │ │ ├── tailhead.o │ │ ├── temphelper.d │ │ ├── temphelper.dia │ │ ├── temphelper.o │ │ ├── template.d │ │ ├── template.dia │ │ ├── template.o │ │ ├── text_object.d │ │ ├── text_object.dia │ │ ├── text_object.o │ │ ├── timeinfo.d │ │ ├── timeinfo.dia │ │ ├── timeinfo.o │ │ ├── top.d │ │ ├── top.dia │ │ ├── top.o │ │ ├── update-cb.d │ │ ├── update-cb.dia │ │ ├── update-cb.o │ │ ├── user.d │ │ ├── user.dia │ │ ├── user.o │ │ ├── weather.d │ │ ├── weather.dia │ │ ├── weather.o │ │ ├── x11.d │ │ ├── x11.dia │ │ └── x11.o │ └── dgph ├── logo ├── conky-logomark-violet.png ├── conky-logomark-violet.svg ├── conky-logotype-horizontal-violet.png ├── conky-logotype-horizontal-violet.svg ├── conky-logotype-vertical-violet.png └── conky-logotype-vertical-violet.svg ├── lua ├── CMakeLists.txt ├── cairo.pkg ├── cairo_imlib2_helper.pkg ├── imlib2.pkg ├── libcairo-helper.h ├── libcairo.patch ├── libcairo_imlib2_helper.h ├── librsvg-helper.h └── rsvg.pkg ├── sonar-project.properties ├── src ├── CMakeLists.txt ├── algebra.cc ├── algebra.h ├── apcupsd.cc ├── apcupsd.h ├── audacious.cc ├── audacious.h ├── bsdapm.cc ├── bsdapm.h ├── build.h.in ├── c++wrap.cc ├── c++wrap.hh ├── ccurl_thread.cc ├── ccurl_thread.h ├── cmus.cc ├── cmus.h ├── colours.cc ├── colours.h ├── combine.cc ├── combine.h ├── common.cc ├── common.h ├── conky.cc ├── conky.h ├── core.cc ├── core.h ├── cpu.cc ├── cpu.h ├── darwin.h ├── darwin.mm ├── darwin_sip.h ├── data-source.cc ├── data-source.hh ├── diskio.cc ├── diskio.h ├── dragonfly.cc ├── dragonfly.h ├── entropy.cc ├── entropy.h ├── exec.cc ├── exec.h ├── fonts.cc ├── fonts.h ├── freebsd.cc ├── freebsd.h ├── fs.cc ├── fs.h ├── haiku.cc ├── haiku.h ├── hddtemp.cc ├── hddtemp.h ├── i18n.h ├── i8k.cc ├── i8k.h ├── ibm.cc ├── ibm.h ├── ical.cc ├── ical.h ├── iconv_tools.cc ├── iconv_tools.h ├── imlib2.cc ├── imlib2.h ├── irc.cc ├── irc.h ├── journal.cc ├── journal.h ├── libmpdclient.cc ├── libmpdclient.h ├── libtcp-portmon.cc ├── libtcp-portmon.h ├── linux.cc ├── linux.h ├── llua.cc ├── llua.h ├── logging.h ├── lua-config.cc ├── lua-config.hh ├── luamm.cc ├── luamm.hh ├── mail.cc ├── mail.h ├── main.cc ├── main.h ├── mboxscan.cc ├── mboxscan.h ├── misc.cc ├── misc.h ├── mixer.cc ├── mixer.h ├── moc.cc ├── moc.h ├── mpd.cc ├── mpd.h ├── mysql.cc ├── mysql.h ├── nc.cc ├── nc.h ├── net_stat.cc ├── net_stat.h ├── netbsd.cc ├── netbsd.h ├── nvidia.cc ├── nvidia.h ├── openbsd.cc ├── openbsd.h ├── prioqueue.cc ├── prioqueue.h ├── proc.cc ├── proc.h ├── prss.cc ├── prss.h ├── pulseaudio.cc ├── pulseaudio.h ├── read_tcpip.cc ├── read_tcpip.h ├── rss.cc ├── rss.h ├── scroll.cc ├── scroll.h ├── semaphore.hh ├── setting.cc ├── setting.hh ├── smapi.cc ├── smapi.h ├── solaris.cc ├── solaris.h ├── sony.cc ├── sony.h ├── specials.cc ├── specials.h ├── tailhead.cc ├── tailhead.h ├── tcp-portmon.cc ├── tcp-portmon.h ├── temphelper.cc ├── temphelper.h ├── template.cc ├── template.h ├── text_object.cc ├── text_object.h ├── timeinfo.cc ├── timeinfo.h ├── top.cc ├── top.h ├── update-cb.cc ├── update-cb.hh ├── user.cc ├── user.h ├── users.cc ├── users.h ├── weather.cc ├── weather.h ├── x11.cc ├── x11.h ├── xmms2.cc └── xmms2.h └── tests ├── CMakeLists.txt ├── catch2 └── catch.hpp ├── dockerfiles ├── Dockerfile.centos6-base ├── Dockerfile.centos6-gcc-7 ├── Dockerfile.centos7-base ├── Dockerfile.centos7-clang-5 ├── Dockerfile.centos7-gcc-7 ├── Dockerfile.centos7-gcc-8 ├── Dockerfile.fedora-29-base ├── Dockerfile.fedora-29-clang-7 ├── Dockerfile.fedora-29-gcc-8 ├── Dockerfile.fedora-31-base ├── Dockerfile.fedora-31-clang-8 ├── Dockerfile.ubuntu-base ├── Dockerfile.ubuntu-clang-7 ├── Dockerfile.ubuntu-clang-8 ├── Dockerfile.ubuntu-gcc-5 ├── Dockerfile.ubuntu-gcc-6 ├── Dockerfile.ubuntu-gcc-7 └── Dockerfile.ubuntu-gcc-8 ├── llvm-gcov.sh ├── test-common.cc ├── test-conky.cc ├── test-darwin.cc └── test-linux.cc /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .dockerignore 3 | 4 | .DS_Store 5 | *~ 6 | .*.swp 7 | Doxyfile 8 | patches/ 9 | doc/conky.1 10 | README 11 | build*/ 12 | doc/*.html 13 | 14 | Makefile 15 | CMakeCache.txt 16 | CMakeFiles 17 | data/convertconf.h 18 | data/defconfig.h 19 | lua/libcairo-orig.c 20 | lua/libcairo.c 21 | lua/libimlib2.c 22 | *.so 23 | *.a 24 | /config.h 25 | 26 | # Ignore vscode stuff 27 | .vscode 28 | *.code-workspace 29 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | indent_style = space 7 | indent_size = 2 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **Issue** 2 | 3 | Verify the issue you want to report is not a duplicate. If not, please explain 4 | your bug or issue here. [DELETE ME] 5 | 6 | **Information** 7 | 8 | Do we require your OS and/or Conky version? If not, delete this part. Otherwise, 9 | please report them here. [DELETE ME] 10 | 11 | Do we require your config? If no, delete this part. Otherwise, place your 12 | config inside `lua` triple backticks. [DELETE ME] 13 | 14 | 15 | ```lua 16 | conky.config = { 17 | out_to_x = false, 18 | out_to_console = true, 19 | }; 20 | 21 | conky.text = [[ 22 | Hello, World! 23 | ]]; 24 | ``` 25 | 26 | If you want to report a crash, please try again with `gdb`. 27 | ```bash 28 | # Start 'conky' 29 | $ gdb conky 30 | 31 | # Run 'conky' with a config. 32 | (gdb) run -c ~/.your_conky.conf 33 | 34 | # Wait for a crash to occur, then run this. 35 | (gdb) bt full 36 | 37 | # Backtrace. 38 | ``` 39 | We want that backtrace inside `gdb` triple backticks. 40 | ```gdb 41 | $ gdb conky 42 | GNU gdb (GDB) 8.2 43 | Copyright (C) 2018 Free Software Foundation, Inc. 44 | License GPLv3+: GNU GPL version 3 or later 45 | This is free software: you are free to change and redistribute it. 46 | There is NO WARRANTY, to the extent permitted by law. 47 | ... 48 | ``` 49 | 50 | Please delete all descriptions, unused headers, notes, sections, etc too. Thank you. 51 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **Descriptions** 2 | * Describe the changes, why they were necessary, etc 3 | * Describe how the changes will affect existing behaviour. 4 | * Describe how you tested and validated your changes. 5 | * Include any relevant screenshots/evidence demonstrating that the changes work and have been tested. 6 | 7 | **Licenses** 8 | * Any new source files should include a GPLv3 license header. 9 | * Any contributed code must be GPLv3 licensed. 10 | 11 | **Notes** 12 | * Make sure your code is clean and if you have added a new features, some 13 | comments may be appreciated. Make sure your commit messages are 14 | clear/information enough. 15 | * If you added or altered settings and/or variables, make sure to 16 | update the documentation. Do not forget to mention default values or required 17 | build flags if this applies to your change. 18 | * If you added a build flag, make sure to update the `static void print_version(void)` function with your new flag. If you added a new console command, make sure to update the `static void print_help(const char *prog_name)` function with your new command. 19 | * Add tests for the code, where appropriate. 20 | 21 | Please delete all descriptions, headers, notes, sections, etc too. Thank you. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ManageConky 3 | forConkyX 4 | *~ 5 | .*.swp 6 | Doxyfile 7 | patches/ 8 | doc/conky.1 9 | README 10 | build*/ 11 | doc/*.html 12 | 13 | Makefile 14 | CMakeCache.txt 15 | CMakeFiles 16 | data/convertconf.h 17 | data/defconfig.h 18 | lua/libcairo-orig.c 19 | lua/libcairo.c 20 | lua/libimlib2.c 21 | *.so 22 | *.a 23 | /config.h 24 | 25 | # Ignore vscode stuff 26 | .vscode 27 | *.code-workspace 28 | -------------------------------------------------------------------------------- /3rdparty/toluapp/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /3rdparty/toluapp/Makefile: -------------------------------------------------------------------------------- 1 | # makefile for tolua hierarchy 2 | 3 | all: 4 | @echo "Makefile is deprecated ;)" 5 | @echo "see INSTALL for details on how to build tolua++" 6 | -------------------------------------------------------------------------------- /3rdparty/toluapp/README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/brndnmtthws/toluapp.svg?branch=master)](https://travis-ci.org/brndnmtthws/toluapp) 2 | 3 | # tolua++ 4 | 5 | ## What is tolua++? 6 | 7 | tolua++ is an extension of toLua, a tool to integrate C/C++ code with 8 | Lua. tolua++ includes new features oriented to c++, such as class 9 | templates. 10 | 11 | tolua is a tool that greatly simplifies the integration of C/C++ code 12 | with Lua. Based on a "cleaned" header file, tolua automatically generates 13 | the binding code to access C/C++ features from Lua. Using Lua-5.0 API and 14 | metamethod facilities, the current version automatically maps C/C++ 15 | constants, external variables, functions, namespace, classes, and methods 16 | to Lua. It also provides facilities to create Lua modules. 17 | 18 | ## Availability 19 | 20 | tolua++ is freely available for both academic and commercial purposes. 21 | See COPYRIGHT for details. 22 | 23 | tolua++ can be downloaded from the sites below: 24 | http://www.codenix.com/~tolua/ 25 | 26 | ## Installation 27 | 28 | See INSTALL. 29 | 30 | Contacting the author 31 | tolua has been designed and implemented by Waldemar Celes. 32 | tolua++ is maintained by Ariel Manzur. 33 | Send your comments, bug reports and anything else to 34 | tolua@codenix.com 35 | -------------------------------------------------------------------------------- /3rdparty/toluapp/config_linux.py: -------------------------------------------------------------------------------- 1 | 2 | ## This is the linux configuration file 3 | # use 'scons -h' to see the list of command line options available 4 | 5 | # Compiler flags (based on Debian's installation of lua) 6 | #LINKFLAGS = ['-g'] 7 | CCFLAGS = ['-O2', '-ansi', '-Wall'] 8 | #CCFLAGS = ['-I/usr/include/lua50', '-g'] 9 | 10 | # this is the default directory for installation. Files will be installed on 11 | # /bin, /lib and /include when you run 'scons install' 12 | # 13 | # You can also specify this directory on the command line with the 'prefix' 14 | # option 15 | # 16 | # You can see more 'generic' options for POSIX systems on config_posix.py 17 | 18 | prefix = '/usr/local' 19 | 20 | # libraries (based on Debian's installation of lua) 21 | LIBS = ['lua', 'dl', 'm'] 22 | 23 | -------------------------------------------------------------------------------- /3rdparty/toluapp/config_msvc.py: -------------------------------------------------------------------------------- 1 | 2 | ## This is the MSVC configuration file 3 | # use 'scons -h' to see the list of command line options available 4 | 5 | # flags for the compiler 6 | CCFLAGS = ['/nologo'] 7 | 8 | # this is the default directory for installation. Files will be installed on 9 | # /bin, /lib and /include when you run 'scons install' 10 | # 11 | # You can also specify this directory on the command line with the 'prefix' 12 | # option 13 | # 14 | # If you leave it as 'None', we'll try to auto-detect it (as 'PLATFORMSDKDIR' 15 | # detected by SCons). 16 | 17 | prefix = None # (it's a string) 18 | 19 | # the libraries 20 | LIBS = ['lua', 'lualib'] 21 | 22 | # linkflags 23 | LINKFLAGS = ['/nologo'] 24 | 25 | ## We need to specifiy the environment for the PATH and LIB and all those 26 | # parameters cl tales from it 27 | import os 28 | ENV = os.environ 29 | -------------------------------------------------------------------------------- /3rdparty/toluapp/config_posix.py: -------------------------------------------------------------------------------- 1 | 2 | ## This is the POSIX configuration file (will be included for cygwin, mingw 3 | # and possibly mac OSX and BSDs) 4 | # use 'scons -h' to see the list of command line options available 5 | 6 | # flags for the compiler 7 | #CCFLAGS = [] 8 | CCFLAGS = ['-O2', '-ansi', '-Wall'] 9 | 10 | # this is the default directory for installation. Files will be installed on 11 | # /bin, /lib and /include when you run 'scons install' 12 | # 13 | # You can also specify this directory on the command line with the 'prefix' 14 | # option 15 | 16 | prefix = '/usr/local' 17 | 18 | # libraries 19 | LIBS = ['lua', 'lualib', 'm'] 20 | 21 | 22 | 23 | import os 24 | -------------------------------------------------------------------------------- /3rdparty/toluapp/custom-5.1.py: -------------------------------------------------------------------------------- 1 | CCFLAGS = ['-I/usr/include/lua5.1', '-O2', '-ansi'] 2 | #LIBPATH = ['/usr/local/lib'] 3 | LIBS = ['lua5.1', 'dl', 'm'] 4 | prefix = '/mingw' 5 | #build_dev=1 6 | tolua_bin = 'tolua++5.1' 7 | tolua_lib = 'tolua++5.1' 8 | TOLUAPP = 'tolua++5.1' 9 | 10 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/README: -------------------------------------------------------------------------------- 1 | The Debian Package tolua++ 2 | ---------------------------- 3 | 4 | Comments regarding the Package 5 | 6 | Ariel Manzur , Thu, 30 Dec 2004 11:59:14 -0300 7 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/README.Debian: -------------------------------------------------------------------------------- 1 | tolua++ for Debian 2 | ------------------ 3 | 4 | 5 | 6 | -- Ariel Manzur , Thu, 30 Dec 2004 11:59:14 -0300 7 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/conffiles.ex: -------------------------------------------------------------------------------- 1 | # 2 | # If you want to use this conffile, remove all comments and put files that 3 | # you want dpkg to process here using their absolute pathnames. 4 | # See the policy manual 5 | # 6 | # for example: 7 | # /etc/tolua++/tolua++.conf 8 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/control: -------------------------------------------------------------------------------- 1 | Source: tolua++ 2 | Section: unknown 3 | Priority: optional 4 | Maintainer: Ariel Manzur 5 | Build-Depends: debhelper (>= 4.0.0), scons, liblua50-dev, liblualib50-dev 6 | Standards-Version: 3.6.1 7 | 8 | Package: tolua++ 9 | Architecture: any 10 | Depends: ${shlibs:Depends}, ${misc:Depends}, liblua50-dev, liblualib50-dev 11 | Description: tolua++ 12 | tolua++ is an extended version of tolua, a tool to integrate C/C++ code with 13 | Lua. tolua++ includes new features oriented to c++. 14 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/copyright: -------------------------------------------------------------------------------- 1 | This package is maintained by Ariel Manzur on 2 | Sat, 08 Jan 2005 06:11:22 -0300 3 | 4 | Latest version can be found on http://www.codenix.com/~tolua/ 5 | 6 | Upstream Author(s): Waldemar Celes , 7 | Ariel Manzur 8 | 9 | Copyright: 10 | 11 | Quoted from the README file accompanying tolua: 12 | 13 | 'tolua is freely available; you can redistribute it and/or modify it. 14 | The software provided hereunder is on an "as is" basis, and 15 | the author has no obligation to provide maintenance, support, 16 | updates, enhancements, or modifications.' 17 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/cron.d.ex: -------------------------------------------------------------------------------- 1 | # 2 | # Regular cron jobs for the tolua++ package 3 | # 4 | 0 4 * * * root tolua++_maintenance 5 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | usr/lib 3 | usr/include 4 | 5 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/emacsen-install.ex: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | # /usr/lib/emacsen-common/packages/install/tolua++ 3 | 4 | # Written by Jim Van Zandt , borrowing heavily 5 | # from the install scripts for gettext by Santiago Vila 6 | # and octave by Dirk Eddelbuettel . 7 | 8 | FLAVOR=$1 9 | PACKAGE=tolua++ 10 | 11 | if [ ${FLAVOR} = emacs ]; then exit 0; fi 12 | 13 | echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR} 14 | 15 | #FLAVORTEST=`echo $FLAVOR | cut -c-6` 16 | #if [ ${FLAVORTEST} = xemacs ] ; then 17 | # SITEFLAG="-no-site-file" 18 | #else 19 | # SITEFLAG="--no-site-file" 20 | #fi 21 | FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile" 22 | 23 | ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} 24 | ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} 25 | 26 | # Install-info-altdir does not actually exist. 27 | # Maybe somebody will write it. 28 | if test -x /usr/sbin/install-info-altdir; then 29 | echo install/${PACKAGE}: install Info links for ${FLAVOR} 30 | install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/info/${PACKAGE}.info.gz 31 | fi 32 | 33 | install -m 755 -d ${ELCDIR} 34 | cd ${ELDIR} 35 | FILES=`echo *.el` 36 | cp ${FILES} ${ELCDIR} 37 | cd ${ELCDIR} 38 | 39 | cat << EOF > path.el 40 | (setq load-path (cons "." load-path) byte-compile-warnings nil) 41 | EOF 42 | ${FLAVOR} ${FLAGS} ${FILES} 43 | rm -f *.el path.el 44 | 45 | exit 0 46 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/emacsen-remove.ex: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | # /usr/lib/emacsen-common/packages/remove/tolua++ 3 | 4 | FLAVOR=$1 5 | PACKAGE=tolua++ 6 | 7 | if [ ${FLAVOR} != emacs ]; then 8 | if test -x /usr/sbin/install-info-altdir; then 9 | echo remove/${PACKAGE}: removing Info links for ${FLAVOR} 10 | install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/tolua++.info.gz 11 | fi 12 | 13 | echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR} 14 | rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE} 15 | fi 16 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/emacsen-startup.ex: -------------------------------------------------------------------------------- 1 | ;; -*-emacs-lisp-*- 2 | ;; 3 | ;; Emacs startup file for the Debian tolua++ package 4 | ;; 5 | ;; Originally contributed by Nils Naumann 6 | ;; Modified by Dirk Eddelbuettel 7 | ;; Adapted for dh-make by Jim Van Zandt 8 | 9 | ;; The tolua++ package follows the Debian/GNU Linux 'emacsen' policy and 10 | ;; byte-compiles its elisp files for each 'emacs flavor' (emacs19, 11 | ;; xemacs19, emacs20, xemacs20...). The compiled code is then 12 | ;; installed in a subdirectory of the respective site-lisp directory. 13 | ;; We have to add this to the load-path: 14 | (let ((package-dir (concat "/usr/share/" 15 | (symbol-name flavor) 16 | "/site-lisp/tolua++"))) 17 | (when (file-directory-p package-dir) 18 | (setq load-path (cons package-dir load-path)))) 19 | 20 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/menu.ex: -------------------------------------------------------------------------------- 1 | ?package(tolua++):needs="X11|text|vc|wm" section="Apps/see-menu-manual"\ 2 | title="tolua++" command="/usr/bin/tolua++" 3 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/postinst.ex: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # postinst script for tolua++ 3 | # 4 | # see: dh_installdeb(1) 5 | 6 | set -e 7 | 8 | # summary of how this script can be called: 9 | # * `configure' 10 | # * `abort-upgrade' 11 | # * `abort-remove' `in-favour' 12 | # 13 | # * `abort-deconfigure' `in-favour' 14 | # `removing' 15 | # 16 | # for details, see http://www.debian.org/doc/debian-policy/ or 17 | # the debian-policy package 18 | # 19 | 20 | case "$1" in 21 | configure) 22 | 23 | ;; 24 | 25 | abort-upgrade|abort-remove|abort-deconfigure) 26 | 27 | ;; 28 | 29 | *) 30 | echo "postinst called with unknown argument \`$1'" >&2 31 | exit 1 32 | ;; 33 | esac 34 | 35 | # dh_installdeb will replace this with shell code automatically 36 | # generated by other debhelper scripts. 37 | 38 | #DEBHELPER# 39 | 40 | exit 0 41 | 42 | 43 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/postrm.ex: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # postrm script for tolua++ 3 | # 4 | # see: dh_installdeb(1) 5 | 6 | set -e 7 | 8 | # summary of how this script can be called: 9 | # * `remove' 10 | # * `purge' 11 | # * `upgrade' 12 | # * `failed-upgrade' 13 | # * `abort-install' 14 | # * `abort-install' 15 | # * `abort-upgrade' 16 | # * `disappear' overwrit>r> 17 | # for details, see http://www.debian.org/doc/debian-policy/ or 18 | # the debian-policy package 19 | 20 | 21 | case "$1" in 22 | purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) 23 | 24 | 25 | ;; 26 | 27 | *) 28 | echo "postrm called with unknown argument \`$1'" >&2 29 | exit 1 30 | 31 | esac 32 | 33 | # dh_installdeb will replace this with shell code automatically 34 | # generated by other debhelper scripts. 35 | 36 | #DEBHELPER# 37 | 38 | exit 0 39 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/preinst.ex: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # preinst script for tolua++ 3 | # 4 | # see: dh_installdeb(1) 5 | 6 | set -e 7 | 8 | # summary of how this script can be called: 9 | # * `install' 10 | # * `install' 11 | # * `upgrade' 12 | # * `abort-upgrade' 13 | # 14 | # for details, see http://www.debian.org/doc/debian-policy/ or 15 | # the debian-policy package 16 | 17 | 18 | case "$1" in 19 | install|upgrade) 20 | # if [ "$1" = "upgrade" ] 21 | # then 22 | # start-stop-daemon --stop --quiet --oknodo \ 23 | # --pidfile /var/run/tolua++.pid \ 24 | # --exec /usr/sbin/tolua++ 2>/dev/null || true 25 | # fi 26 | ;; 27 | 28 | abort-upgrade) 29 | ;; 30 | 31 | *) 32 | echo "preinst called with unknown argument \`$1'" >&2 33 | exit 1 34 | ;; 35 | esac 36 | 37 | # dh_installdeb will replace this with shell code automatically 38 | # generated by other debhelper scripts. 39 | 40 | #DEBHELPER# 41 | 42 | exit 0 43 | 44 | 45 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/prerm.ex: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # prerm script for tolua++ 3 | # 4 | # see: dh_installdeb(1) 5 | 6 | set -e 7 | 8 | # summary of how this script can be called: 9 | # * `remove' 10 | # * `upgrade' 11 | # * `failed-upgrade' 12 | # * `remove' `in-favour' 13 | # * `deconfigure' `in-favour' 14 | # `removing' 15 | # 16 | # for details, see http://www.debian.org/doc/debian-policy/ or 17 | # the debian-policy package 18 | 19 | 20 | case "$1" in 21 | remove|upgrade|deconfigure) 22 | # install-info --quiet --remove /usr/info/tolua++.info.gz 23 | ;; 24 | failed-upgrade) 25 | ;; 26 | *) 27 | echo "prerm called with unknown argument \`$1'" >&2 28 | exit 1 29 | ;; 30 | esac 31 | 32 | # dh_installdeb will replace this with shell code automatically 33 | # generated by other debhelper scripts. 34 | 35 | #DEBHELPER# 36 | 37 | exit 0 38 | 39 | 40 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/tolua++-default.ex: -------------------------------------------------------------------------------- 1 | # Defaults for tolua++ initscript 2 | # sourced by /etc/init.d/tolua++ 3 | # installed at /etc/default/tolua++ by the maintainer scripts 4 | 5 | # 6 | # This is a POSIX shell fragment 7 | # 8 | 9 | # Additional options that are passed to the Daemon. 10 | DAEMON_OPTS="" 11 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/tolua++.doc-base.EX: -------------------------------------------------------------------------------- 1 | Document: tolua++ 2 | Title: Debian tolua++ Manual 3 | Author: 4 | Abstract: This manual describes what tolua++ is 5 | and how it can be used to 6 | manage online manuals on Debian systems. 7 | Section: unknown 8 | 9 | Format: debiandoc-sgml 10 | Files: /usr/share/doc/tolua++/tolua++.sgml.gz 11 | 12 | Format: postscript 13 | Files: /usr/share/doc/tolua++/tolua++.ps.gz 14 | 15 | Format: text 16 | Files: /usr/share/doc/tolua++/tolua++.text.gz 17 | 18 | Format: HTML 19 | Index: /usr/share/doc/tolua++/html/index.html 20 | Files: /usr/share/doc/tolua++/html/*.html 21 | 22 | 23 | -------------------------------------------------------------------------------- /3rdparty/toluapp/debian/watch.ex: -------------------------------------------------------------------------------- 1 | # Example watch control file for uscan 2 | # Rename this file to "watch" and then you can run the "uscan" command 3 | # to check for upstream updates and more. 4 | # Site Directory Pattern Version Script 5 | version=2 6 | sunsite.unc.edu /pub/Linux/Incoming tolua++-(.*)\.tar\.gz debian uupdate 7 | -------------------------------------------------------------------------------- /3rdparty/toluapp/dist.info: -------------------------------------------------------------------------------- 1 | --- This file is part of LuaDist project 2 | 3 | name = "toluapp" 4 | version = "1.0.93" 5 | 6 | desc = "tolua++ is an extension of toLua, a tool to integrate C/Cpp code with Lua." 7 | author = "Waldemar Celes, Ariel Manzur" 8 | license = "as-is" 9 | url = "http://www.codenix.com/~tolua/" 10 | maintainer = "Peter Kapec" 11 | 12 | depends = { 13 | "lua ~> 5.1" 14 | } 15 | -------------------------------------------------------------------------------- /3rdparty/toluapp/doc/toluapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/3rdparty/toluapp/doc/toluapp.gif -------------------------------------------------------------------------------- /3rdparty/toluapp/libtoluapp.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | class_gc_event 3 | push_table_instance 4 | tolua_array 5 | tolua_beginmodule 6 | tolua_cclass 7 | tolua_classevents 8 | tolua_constant 9 | tolua_copy 10 | tolua_default_collect 11 | tolua_dobuffer 12 | tolua_endmodule 13 | tolua_error 14 | tolua_fast_isa 15 | tolua_function 16 | tolua_getfieldboolean 17 | tolua_isboolean 18 | tolua_isbooleanarray 19 | tolua_ismodulemetatable 20 | tolua_isnoobj 21 | tolua_isnumber 22 | tolua_isnumberarray 23 | tolua_isstring 24 | tolua_isstringarray 25 | tolua_istable 26 | tolua_istablearray 27 | tolua_isuserdata 28 | tolua_isuserdataarray 29 | tolua_isusertable 30 | tolua_isusertype 31 | tolua_isusertypearray 32 | tolua_isvalue 33 | tolua_isvaluearray 34 | tolua_module 35 | tolua_moduleevents 36 | tolua_open 37 | tolua_pushboolean 38 | tolua_pushfieldboolean 39 | tolua_pushfieldnumber 40 | tolua_pushfieldstring 41 | tolua_pushfielduserdata 42 | tolua_pushfieldusertype 43 | tolua_pushfieldusertype_and_takeownership 44 | tolua_pushfieldvalue 45 | tolua_pushnumber 46 | tolua_pushstring 47 | tolua_pushuserdata 48 | tolua_pushusertype 49 | tolua_pushusertype_and_takeownership 50 | tolua_pushvalue 51 | tolua_register_gc 52 | tolua_toboolean 53 | tolua_tofieldnumber 54 | tolua_tofieldstring 55 | tolua_tofielduserdata 56 | tolua_tofieldusertype 57 | tolua_tofieldvalue 58 | tolua_tonumber 59 | tolua_tostring 60 | tolua_touserdata 61 | tolua_tousertype 62 | tolua_tovalue 63 | tolua_typename 64 | tolua_usertype 65 | tolua_variable 66 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/SCsub: -------------------------------------------------------------------------------- 1 | Import('env') 2 | 3 | src = [ 4 | env.Object('tolua.c'), 5 | ] 6 | 7 | 8 | #toluabind = env.LuaBinding('toluabind.c', 'tolua_scons.pkg', 'tolua', bootstrap = True) 9 | 10 | env.bin_target = env.Program('#/bin/'+env['tolua_bin'], src, LIBS = ['$tolua_lib'] + env['LIBS']) 11 | 12 | env.bootstrap_target = env.Program('#/bin/'+env['TOLUAPP_BOOTSTRAP'], src + ['toluabind_default.c', env.lib_target_static], LIBS = env['LIBS']) 13 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/lua/all.lua: -------------------------------------------------------------------------------- 1 | dofile(path.."compat-5.1.lua") 2 | dofile(path.."compat.lua") 3 | dofile(path.."feature.lua") 4 | dofile(path.."verbatim.lua") 5 | dofile(path.."basic.lua") 6 | dofile(path.."code.lua") 7 | dofile(path.."typedef.lua") 8 | dofile(path.."container.lua") 9 | dofile(path.."package.lua") 10 | dofile(path.."module.lua") 11 | dofile(path.."namespace.lua") 12 | dofile(path.."define.lua") 13 | dofile(path.."enumerate.lua") 14 | dofile(path.."declaration.lua") 15 | dofile(path.."variable.lua") 16 | dofile(path.."array.lua") 17 | dofile(path.."function.lua") 18 | dofile(path.."operator.lua") 19 | dofile(path.."template_class.lua") 20 | dofile(path.."class.lua") 21 | dofile(path.."clean.lua") 22 | --dofile(path.."custom.lua") 23 | dofile(path.."doit.lua") 24 | 25 | local err,msg = xpcall(doit, debug.traceback) 26 | if not err then 27 | --print("**** msg is "..tostring(msg)) 28 | local _,_,label,msg = strfind(msg,"(.-:.-:%s*)(.*)") 29 | tolua_error(msg,label) 30 | end 31 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/lua/compat-5.1.lua: -------------------------------------------------------------------------------- 1 | if string.find(_VERSION, "5%.0") then 2 | return 3 | end 4 | 5 | -- "loadfile" 6 | local function pp_dofile(path) 7 | 8 | local loaded = false 9 | local getfile = function() 10 | 11 | if loaded then 12 | return 13 | else 14 | local file,err = io.open(path) 15 | if not file then 16 | error("error loading file "..path..": "..err) 17 | end 18 | local ret = file:read("*a") 19 | file:close() 20 | 21 | ret = string.gsub(ret, "%.%.%.%s*%)", "...) local arg = {n=select('#', ...), ...};") 22 | 23 | loaded = true 24 | return ret 25 | end 26 | end 27 | 28 | local f = load(getfile, path) 29 | if not f then 30 | 31 | error("error loading file "..path ..": " .. errmsg) 32 | end 33 | return f() 34 | end 35 | 36 | old_dofile = dofile 37 | dofile = pp_dofile 38 | 39 | 40 | -- string.gsub 41 | --[[ 42 | local ogsub = string.gsub 43 | local function compgsub(a,b,c,d) 44 | if type(c) == "function" then 45 | local oc = c 46 | c = function (...) return oc(...) or '' end 47 | end 48 | return ogsub(a,b,c,d) 49 | end 50 | string.repl = ogsub 51 | --]] 52 | 53 | --string.gsub = compgsub 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/lua/namespace.lua: -------------------------------------------------------------------------------- 1 | -- tolua: namespace class 2 | -- Written by Waldemar Celes 3 | -- TeCGraf/PUC-Rio 4 | -- Jul 2003 5 | -- $Id: $ 6 | 7 | -- This code is free software; you can redistribute it and/or modify it. 8 | -- The software provided hereunder is on an "as is" basis, and 9 | -- the author has no obligation to provide maintenance, support, updates, 10 | -- enhancements, or modifications. 11 | 12 | 13 | -- Namespace class 14 | -- Represents a namesapce definition. 15 | -- Stores the following fields: 16 | -- name = class name 17 | -- {i} = list of members 18 | classNamespace = { 19 | classtype = 'namespace', 20 | name = '', 21 | } 22 | classNamespace.__index = classNamespace 23 | setmetatable(classNamespace,classModule) 24 | 25 | -- Print method 26 | function classNamespace:print (ident,close) 27 | print(ident.."Namespace{") 28 | print(ident.." name = '"..self.name.."',") 29 | local i=1 30 | while self[i] do 31 | self[i]:print(ident.." ",",") 32 | i = i+1 33 | end 34 | print(ident.."}"..close) 35 | end 36 | 37 | -- Internal constructor 38 | function _Namespace (t) 39 | setmetatable(t,classNamespace) 40 | append(t) 41 | return t 42 | end 43 | 44 | -- Constructor 45 | -- Expects the name and the body of the namespace. 46 | function Namespace (n,b) 47 | local c = _Namespace(_Container{name=n}) 48 | push(c) 49 | c:parse(strsub(b,2,strlen(b)-1)) -- eliminate braces 50 | pop() 51 | end 52 | 53 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/tolua_scons.pkg: -------------------------------------------------------------------------------- 1 | $lfile "src/bin/lua/compat-5.1.lua" 2 | $lfile "src/bin/lua/compat.lua" 3 | $lfile "src/bin/lua/basic.lua" 4 | $lfile "src/bin/lua/feature.lua" 5 | $lfile "src/bin/lua/verbatim.lua" 6 | $lfile "src/bin/lua/code.lua" 7 | $lfile "src/bin/lua/typedef.lua" 8 | $lfile "src/bin/lua/container.lua" 9 | $lfile "src/bin/lua/package.lua" 10 | $lfile "src/bin/lua/module.lua" 11 | $lfile "src/bin/lua/namespace.lua" 12 | $lfile "src/bin/lua/define.lua" 13 | $lfile "src/bin/lua/enumerate.lua" 14 | $lfile "src/bin/lua/declaration.lua" 15 | $lfile "src/bin/lua/variable.lua" 16 | $lfile "src/bin/lua/array.lua" 17 | $lfile "src/bin/lua/function.lua" 18 | $lfile "src/bin/lua/operator.lua" 19 | $lfile "src/bin/lua/template_class.lua" 20 | $lfile "src/bin/lua/class.lua" 21 | $lfile "src/bin/lua/clean.lua" 22 | $lfile "src/bin/lua/doit.lua" 23 | 24 | $[ 25 | local err,msg = pcall(doit) 26 | if not err then 27 | local _,_,label,msg = strfind(msg,"(.-:.-:%s*)(.*)") 28 | tolua_error(msg,label) 29 | print(debug.traceback()) 30 | end 31 | $] 32 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/toluabind.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.92 on Sun Feb 15 22:29:48 2009. 4 | */ 5 | 6 | /* Exported function */ 7 | TOLUA_API int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/bin/toluabind_default.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.8pre2 on Tue Dec 13 01:43:55 2005. 4 | */ 5 | 6 | /* Exported function */ 7 | TOLUA_API int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/lib/SCsub: -------------------------------------------------------------------------------- 1 | Import('env') 2 | 3 | 4 | sources = [ 5 | 'tolua_event.c', 6 | 'tolua_is.c', 7 | 'tolua_map.c', 8 | 'tolua_push.c', 9 | 'tolua_to.c', 10 | ] 11 | 12 | env.lib_target_static = env.Library('#/lib/'+env['tolua_lib']+'_static', sources) 13 | 14 | if env['shared']: 15 | env.lib_target = env.SharedLibrary('#lib/'+env['tolua_lib'], sources) 16 | else: 17 | env.lib_target = env.Library('#/lib/'+env['tolua_lib'], sources) 18 | 19 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/lib/tolua_event.h: -------------------------------------------------------------------------------- 1 | /* tolua: event functions 2 | ** Support code for Lua bindings. 3 | ** Written by Waldemar Celes 4 | ** TeCGraf/PUC-Rio 5 | ** Apr 2003 6 | ** $Id: $ 7 | */ 8 | 9 | /* This code is free software; you can redistribute it and/or modify it. 10 | ** The software provided hereunder is on an "as is" basis, and 11 | ** the author has no obligation to provide maintenance, support, updates, 12 | ** enhancements, or modifications. 13 | */ 14 | 15 | #ifndef TOLUA_EVENT_H 16 | #define TOLUA_EVENT_H 17 | 18 | #include "tolua++.h" 19 | 20 | TOLUA_API void tolua_moduleevents (lua_State* L); 21 | TOLUA_API int tolua_ismodulemetatable (lua_State* L); 22 | TOLUA_API void tolua_classevents (lua_State* L); 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/SCsub: -------------------------------------------------------------------------------- 1 | Import('env') 2 | env_tests = env.Copy() 3 | 4 | env_tests.LuaBinding('tclassbind.cpp', 'tclass.pkg', 'tclass', use_own=1, use_typeid=1) 5 | 6 | env_tests.Append(CXXFLAGS='-DTOLUA_API="extern \\\"C\\\""') 7 | 8 | test_class_so = env_tests.SharedLibrary('tclass', ['tclassbind.cpp'], 9 | LIBS=['$tolua_lib']+env['LIBS'], ) 10 | 11 | env_tests.Append(LIBPATH=".") 12 | 13 | test_class = env_tests.Program('tclass', ['tclass.cpp'], 14 | LIBS=env['LIBS']+['tclass']+['$tolua_lib'], ) 15 | 16 | 17 | 18 | env.test_targets = [test_class] 19 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tarray.c: -------------------------------------------------------------------------------- 1 | #include "lualib.h" 2 | #include "lauxlib.h" 3 | 4 | #include "tarray.h" 5 | 6 | 7 | int a[10] = {1,2,3,4,5,6,7,8,9,10}; 8 | Point p[10] = {{0,1},{1,2},{2,3},{3,4},{4,5},{5,6},{6,7},{7,8},{8,9},{9,10}}; 9 | Point* pp[10]; 10 | 11 | int ma[10]; 12 | Point mp[10]; 13 | Point* mpp[10]; 14 | 15 | Array array; 16 | Array* parray = &array; 17 | 18 | int main (void) 19 | { 20 | int tolua_tarray_open (lua_State*); 21 | lua_State* L = lua_open(); 22 | int i; 23 | 24 | for (i=0; i<10; ++i) 25 | { 26 | pp[i] = &p[i]; 27 | 28 | ma[i] = a[i]; 29 | mp[i] = p[i]; 30 | mpp[i] = pp[i]; 31 | 32 | array.a[i] = a[i]; 33 | array.p[i] = p[i]; 34 | array.pp[i] = pp[i]; 35 | } 36 | 37 | luaopen_base(L); 38 | tolua_tarray_open(L); 39 | 40 | lua_dofile(L,"tarray.lua"); 41 | 42 | lua_close(L); 43 | return 0; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tarray.h: -------------------------------------------------------------------------------- 1 | 2 | typedef struct Point Point; 3 | struct Point 4 | { 5 | float x; 6 | float y; 7 | }; 8 | 9 | 10 | extern int a[10]; 11 | extern Point p[10]; 12 | extern Point* pp[10]; 13 | 14 | 15 | extern int ma[10]; 16 | extern Point mp[10]; 17 | extern Point* mpp[10]; 18 | 19 | typedef struct Array Array; 20 | struct Array 21 | { 22 | int a[10]; 23 | Point p[10]; 24 | Point* pp[10]; 25 | }; 26 | 27 | extern Array array; 28 | extern Array* parray; 29 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tarray.lua: -------------------------------------------------------------------------------- 1 | for i=1,10 do 2 | assert(a[i]==i) 3 | end 4 | 5 | for i=2,10 do 6 | assert(p[i-1].y==p[i].x) 7 | end 8 | 9 | for i=1,10 do 10 | assert(M.a[i]==i) 11 | end 12 | 13 | for i=2,10 do 14 | assert(M.p[i-1].y==M.p[i].x) 15 | end 16 | 17 | for i=1,10 do 18 | assert(pp[i].x==M.p[i].x and p[i].y == M.pp[i].y) 19 | end 20 | 21 | for i=1,10 do 22 | assert(array.a[i] == parray.a[i]) 23 | assert(array.p[i].x == parray.pp[i].x and array.p[i].y == parray.pp[i].y) 24 | end 25 | 26 | for i=1,10 do 27 | array.a[i] = a[10-i+1] 28 | M.a[i] = 10-i+1 29 | assert(array.a[i]==M.a[i]) 30 | end 31 | 32 | for i=2,10 do 33 | array.p[i] = array.pp[1] 34 | assert(array.p[i].x==0 and array.p[i].y==1) 35 | end 36 | 37 | print("Array test OK") 38 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tarray.pkg: -------------------------------------------------------------------------------- 1 | $#include "tarray.h" 2 | 3 | struct Point 4 | { 5 | float x; 6 | float y; 7 | }; 8 | 9 | 10 | extern int a[10]; 11 | extern const Point p[10]; 12 | extern Point* pp[10]; 13 | 14 | 15 | module M { 16 | extern int ma[10]@a; 17 | extern const Point mp[10]@p; 18 | extern Point* mpp[10]@pp; 19 | } 20 | 21 | struct Array 22 | { 23 | int a[10]; 24 | Point p[10]; 25 | Point* pp[10]; 26 | }; 27 | 28 | extern Array array; 29 | extern Array* parray; 30 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tclass.cpp: -------------------------------------------------------------------------------- 1 | extern "C" { 2 | #include "lua.h" 3 | #include "lualib.h" 4 | #include "lauxlib.h" 5 | } 6 | 7 | #include "tclass.h" 8 | 9 | //Test::Tst_A* Test::Tst_A::last; 10 | //Test::Tst_B* Test::Tst_B::last; 11 | //Test::Tst_C* Test::Tst_C::last; 12 | 13 | extern "C" { 14 | int tolua_tclass_open (lua_State*); 15 | } 16 | 17 | int main () 18 | { 19 | Test::Tst_B* b = new Test::Tst_B; // instance used in Lua code 20 | 21 | lua_State* L = lua_open(); 22 | luaL_openlibs(L); 23 | tolua_tclass_open(L); 24 | 25 | luaL_dofile(L,"tclass.lua"); 26 | 27 | lua_close(L); 28 | 29 | delete b; 30 | return 0; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tconstant.h: -------------------------------------------------------------------------------- 1 | #define FIRST 1 2 | #define SECOND 2 3 | 4 | enum { 5 | ONE = 1, 6 | TWO = 2 7 | }; 8 | 9 | #define M_FIRST 1 10 | #define M_SECOND 2 11 | 12 | enum { 13 | M_ONE = 1, 14 | M_TWO = 2 15 | }; 16 | 17 | class A { 18 | public: 19 | 20 | #define FIRST 1 21 | #define SECOND 2 22 | 23 | enum { 24 | ONE = 1, 25 | TWO = 2 26 | }; 27 | }; 28 | 29 | 30 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tconstant.lua: -------------------------------------------------------------------------------- 1 | assert(FIRST==M.FIRST) 2 | assert(FIRST==A.FIRST) 3 | assert(SECOND==M.SECOND) 4 | assert(SECOND==A.SECOND) 5 | 6 | assert(ONE==M.ONE) 7 | assert(ONE==A.ONE) 8 | assert(TWO==M.TWO) 9 | assert(TWO==A.TWO) 10 | 11 | print("Constant test OK") 12 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tconstant.pkg: -------------------------------------------------------------------------------- 1 | $#include "tconstant.h" 2 | 3 | #define FIRST 1 4 | #define SECOND 2 5 | 6 | enum { 7 | ONE = 1, 8 | TWO = 2 9 | }; 10 | 11 | module M { 12 | 13 | #define M_FIRST@FIRST 1 14 | #define M_SECOND@SECOND 2 15 | 16 | enum { 17 | M_ONE@ONE = 1, 18 | M_TWO@TWO = 2 19 | }; 20 | } 21 | 22 | class A { 23 | public: 24 | 25 | #define FIRST 1 26 | #define SECOND 2 27 | 28 | enum { 29 | ONE = 1, 30 | TWO = 2 31 | }; 32 | }; 33 | 34 | 35 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tdirective.lua: -------------------------------------------------------------------------------- 1 | assert(a==3) 2 | assert(A==4) 3 | assert(func()==5) 4 | 5 | print("Directive test OK") 6 | 7 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tdirective.pkg: -------------------------------------------------------------------------------- 1 | $#include "lualib.h" 2 | $#include "lauxlib.h" 3 | 4 | $int a; 5 | $extern int a; 6 | 7 | $int main (void) 8 | ${ 9 | $ lua_State* L = lua_open(); 10 | $ luaopen_base(L); 11 | $ tolua_tdirective_open(L); 12 | $ lua_dofile(L,"tdirective.lua"); 13 | $ lua_close(L); 14 | $ return 0; 15 | $} 16 | 17 | $pfile "tdirectivepkg.pkg" 18 | 19 | $< 20 | a = 3; 21 | $> 22 | 23 | $[ 24 | A = 4 25 | $] 26 | 27 | $lfile "tdirectivelua.lua" 28 | 29 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tdirectivelua.lua: -------------------------------------------------------------------------------- 1 | function func () 2 | return 5 3 | end 4 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tdirectivepkg.pkg: -------------------------------------------------------------------------------- 1 | extern int a; 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tmodule.c: -------------------------------------------------------------------------------- 1 | #include "lualib.h" 2 | #include "lauxlib.h" 3 | 4 | #include "tmodule.h" 5 | 6 | int a = 1; 7 | int b = 2; 8 | int c = 3; 9 | int d = 4; 10 | 11 | int main () 12 | { 13 | int tolua_tmodule_open (lua_State*); 14 | 15 | lua_State* L = lua_open(); 16 | luaopen_base(L); 17 | tolua_tmodule_open(L); 18 | 19 | lua_dofile(L,"tmodule.lua"); 20 | 21 | lua_close(L); 22 | return 0; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tmodule.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | extern int a; 4 | extern int b; 5 | extern int c; 6 | extern int d; 7 | 8 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tmodule.lua: -------------------------------------------------------------------------------- 1 | -- test valid access 2 | assert(A.a==1) 3 | assert(A.B.b==2) 4 | assert(A.B.C.c==3) 5 | 6 | -- test invalid access 7 | assert(A.B.a==nil) -- no inheritance 8 | assert(A.B.C.a==nil) 9 | 10 | assert(A.b==nil) -- no access the inner module 11 | assert(A.c==nil) 12 | assert(A.B.c==nil) 13 | 14 | -- test variables appended to existing modules 15 | assert(A.d==4) 16 | 17 | print("Module test OK") 18 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tmodule.pkg: -------------------------------------------------------------------------------- 1 | 2 | $#include "tmodule.h" 3 | 4 | module A { 5 | extern int a; 6 | module B { 7 | extern int b; 8 | module C { 9 | extern int c; 10 | } 11 | } 12 | } 13 | 14 | module A { 15 | extern int d; 16 | } 17 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tnamespace.h: -------------------------------------------------------------------------------- 1 | namespace A { 2 | enum {FIRST=1}; 3 | extern int a; 4 | namespace B { 5 | extern int b; 6 | namespace C { 7 | extern int c; 8 | } 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tnamespace.lua: -------------------------------------------------------------------------------- 1 | -- test valid access 2 | assert(A.a==1) 3 | assert(A.B.b==2) 4 | assert(A.B.C.c==3) 5 | 6 | -- test invalid access 7 | assert(A.B.a==nil) -- no inheritance 8 | assert(A.B.C.a==nil) 9 | 10 | assert(A.b==nil) -- no access the inner module 11 | assert(A.c==nil) 12 | assert(A.B.c==nil) 13 | 14 | print("Namespace test OK") 15 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tnamespace.pkg: -------------------------------------------------------------------------------- 1 | 2 | $#include "tnamespace.h" 3 | 4 | namespace A { 5 | int a; 6 | namespace B { 7 | int b; 8 | namespace C { 9 | int c; 10 | } 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tvariable.c: -------------------------------------------------------------------------------- 1 | #include "lualib.h" 2 | #include "lauxlib.h" 3 | 4 | #include "tvariable.h" 5 | 6 | int i = 1; 7 | float f = 2.0f;; 8 | double d = 3.0; 9 | char* s = "Hello world"; 10 | void* v = (void*)1; 11 | char n[64] = "Hi there"; 12 | 13 | A a = {11,12.0f,13.0,"Hello world from class",(void*)1,"Hi there from class"}; 14 | B* b; 15 | U u; 16 | 17 | int mi = 21; 18 | float mf = 22.0f; 19 | double md = 23.0; 20 | char* ms = "Hello world in module"; 21 | void* mv = NULL; 22 | char mn[64] = "Hi there in module"; 23 | A ma = {31,32.0f,33.0,"Hello world from class in module", 24 | NULL,"Hi there from class in module"}; 25 | B* mb; 26 | 27 | int main (void) 28 | { 29 | int tolua_tvariable_open (lua_State*); 30 | lua_State* L = lua_open(); 31 | 32 | B bb = {a,NULL}; 33 | B bbb = {ma,&bb}; 34 | b = &bb; 35 | mb = &bbb; 36 | 37 | 38 | luaopen_base(L); 39 | tolua_tvariable_open(L); 40 | 41 | lua_dofile(L,"tvariable.lua"); 42 | 43 | lua_close(L); 44 | return 0; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tvariable.h: -------------------------------------------------------------------------------- 1 | typedef struct A A; 2 | typedef struct B B; 3 | typedef union U U; 4 | 5 | struct A 6 | { 7 | int i; 8 | float f; 9 | double d; 10 | char* s; 11 | void* v; 12 | char n[64]; 13 | }; 14 | 15 | union U 16 | { 17 | int i; 18 | float f; 19 | }; 20 | 21 | struct B 22 | { 23 | A a; 24 | B* b; 25 | }; 26 | 27 | extern int i; 28 | extern float f; 29 | extern double d; 30 | extern char* s; 31 | extern void* v; 32 | extern char n[64]; 33 | extern A a; 34 | extern B* b; 35 | extern U u; 36 | 37 | extern int mi; 38 | extern float mf; 39 | extern double md; 40 | extern char* ms; 41 | extern void* mv; 42 | extern char mn[64]; 43 | extern A ma; 44 | extern B* mb; 45 | -------------------------------------------------------------------------------- /3rdparty/toluapp/src/tests/tvariable.pkg: -------------------------------------------------------------------------------- 1 | $#include "tvariable.h" 2 | 3 | struct A 4 | { 5 | int i; 6 | float f; 7 | double d; 8 | char* s; 9 | void* v; 10 | char n[64]; 11 | }; 12 | 13 | struct B 14 | { 15 | A a; 16 | B* b; 17 | }; 18 | 19 | union U 20 | { 21 | int i; 22 | float f; 23 | }; 24 | 25 | extern int i; 26 | extern float f; 27 | extern double d; 28 | extern const char* s; 29 | extern void* v; 30 | extern char n[64]; 31 | extern A a; 32 | extern B* b; 33 | extern U u; 34 | 35 | module M { 36 | extern int mi; 37 | extern float mf; 38 | extern double md; 39 | extern const char* ms; 40 | extern void* mv; 41 | extern const char mn[64]; 42 | extern A a; 43 | extern A ma; 44 | extern B* mb; 45 | } 46 | -------------------------------------------------------------------------------- /3rdparty/toluapp/win32/vc7/toluapp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/3rdparty/toluapp/win32/vc7/toluapp.vcproj -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are welcome from anyone. 4 | 5 | ## Pull Request Guidelines 6 | 7 | When submitting PRs, please: 8 | 9 | - Describe the changes, why they were necessary, etc 10 | - Describe how the changes affect existing behaviour 11 | - Describe how you tested and validated your changes 12 | - Include unit tests when appropriate 13 | - Include any relevant screenshots/evidence demonstrating that the changes work and have been tested 14 | - Any new source files should include a GPLv3 license header 15 | - All new code must be GPLv3 licensed 16 | - Try to leave the code better than you found it 17 | - PRs with failed checks may be ignored or closed; please make sure 18 | the build and checks pass if possible (and notify someone when the build 19 | system is not working) 20 | 21 | _Patches submitted in issues, email, or elsewhere may be ignored._ 22 | 23 | ## Coding Style 24 | 25 | Code should be formatted using `clang-format`. By configuring Conky with `cmake -DCHECK_CODE_QUALITY=ON`, you will be able to run `make clang-format` to automatically format code. If code in your PR is not formatted according to [`.clang-format`](.clang-format), the checks will not pass. 26 | 27 | ## Unit Testing 28 | 29 | Conky uses the [Catch2](https://github.com/catchorg/Catch2) unit testing framework. If you are adding new functions or methods, please consider adding unit tests for that code. Additionally, if you'd like to add tests for existing code, that would be a welcome contribution. 30 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | Any original torsmo code is licensed under the BSD license (see LICENSE.BSD 2 | for a copy) 3 | 4 | All code written since the fork of torsmo is licensed under the GPL (see 5 | LICENSE for a copy), except where noted differently (such as in portmon and 6 | audacious code which are LGPL, and prss which is an MIT-style license). 7 | 8 | Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 9 | Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS) 10 | All rights reserved. 11 | -------------------------------------------------------------------------------- /README.cmake: -------------------------------------------------------------------------------- 1 | Hello, there. 2 | 3 | Using CMake to build Conky is pretty easy, and here is how I do it: 4 | 5 | 1. From the top level source dir, create a build working dir, and cd into it 6 | $ mkdir build 7 | $ cd build 8 | 2. Run the cmake configuration process 9 | $ cmake ../ # pass the path to the sources to cmake 10 | OR 11 | $ ccmake ../ # you can also use the fance curses interface, or try cmake-gui 12 | 3. Compile as usual, and enjoy the out-of-source goodness 13 | $ make 14 | # make install # if you want 15 | 16 | There are a number of build options for Conky, and the best way to discover 17 | them is to use the ccmake (or cmake-gui) CMake tool for browsing them. 18 | 19 | Certain Conky build time features (such as doc generation) require third-party 20 | applications, which you should be notified of via CMake. In the case of doc 21 | generation, you'll need the docbook2X package (available on most 22 | distributions). 23 | -------------------------------------------------------------------------------- /appimage/secret.gpg.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/appimage/secret.gpg.enc -------------------------------------------------------------------------------- /bin/changelog2html.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import sys 4 | 5 | if len(sys.argv) <= 1: 6 | print >> sys.stderr, "Usage: ./changelog2html.py [changelog file]" 7 | sys.exit(1) 8 | 9 | f = sys.argv[1] 10 | 11 | blah = 0 12 | 13 | print '' 14 | 15 | for i in open(f).read().splitlines(): 16 | # ignore empty lines 17 | 18 | if i and i[0].isspace(): 19 | if not '*' in i: 20 | print ' ' + i.strip() 21 | else: 22 | s = i.split('*', 1)[1].strip() 23 | print '
  • ' + s.replace('<', '<').replace('>', '>') 24 | else: 25 | if blah: 26 | print '' 27 | print '

    %s

    ' % i.strip() 28 | print '
      ' 29 | blah = 1 30 | 31 | if blah: 32 | print '
    ' 33 | 34 | print '' 35 | -------------------------------------------------------------------------------- /bin/check-style.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euxo pipefail 3 | 4 | DIR="$( dirname "${BASH_SOURCE[0]}" )" 5 | # Run clang-tidy only for the lines of code which have changed. 6 | git diff -U0 $TRAVIS_COMMIT_RANGE | \ 7 | $DIR/clang-tidy-diff.py -p1 \ 8 | -checks=*,-clang-analyzer-alpha.* \ 9 | -quiet \ 10 | -- \ 11 | -warnings-as-errors=*,-clang-analyzer-alpha.* \ 12 | -format-style='{BasedOnStyle: google, IndentWidth: 2}' 13 | -------------------------------------------------------------------------------- /bin/text2c.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # text2c.sh - convert a text file to C code 4 | # 5 | # Copyright (C) 2008 Phil Sutter 6 | # 7 | # This program is free software: you can redistribute it and/or modify it 8 | # under the terms of the GNU General Public License as published by the Free 9 | # Software Foundation, either version 3 of the License, or (at your option) 10 | # any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, but 13 | # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 14 | # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 15 | # for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License along 18 | # with this program. If not, see . 19 | 20 | 21 | # Invocation is as follows: 22 | # $1: text file 23 | # $2: output file 24 | # $3: name of variable 25 | # 26 | # The output will be a char **, with each field containing a single line of $1. 27 | # Additionally, a macro with the name print_$3 will be defined, with acts as 28 | # a parameter-less function, printing the text to stdout. 29 | 30 | [ $# -eq 3 ] || { 31 | echo "Usage: `basename $0` " 32 | exit 1 33 | } 34 | 35 | outupper="`basename "$2" | tr '[a-z-.]' '[A-Z__]'`" 36 | 37 | ( 38 | printf "const char %s[] = \n" "$3" 39 | sed -e 's/["\]/\\&/g' -e 's/^/ "/' -e 's/$/\\n"/' -e '$s/$/;/' "$1" 40 | ) > "$2" 41 | -------------------------------------------------------------------------------- /cmake/FindClangFormat.cmake: -------------------------------------------------------------------------------- 1 | # Find Clang format 2 | # 3 | 4 | set(CLANG_FORMAT_BIN_NAME 5 | clang-format 6 | clang-format-5.0 7 | clang-format-6.0 8 | clang-format-7 9 | clang-format-8) 10 | 11 | find_program(CLANG_FORMAT_BIN NAMES ${CLANG_FORMAT_BIN_NAME}) 12 | 13 | include(FindPackageHandleStandardArgs) 14 | find_package_handle_standard_args(CLANG_FORMAT DEFAULT_MSG CLANG_FORMAT_BIN) 15 | 16 | mark_as_advanced(CLANG_FORMAT_BIN) 17 | 18 | if(CLANG_FORMAT_FOUND) 19 | # A CMake script to find all source files and setup clang-format targets for 20 | # them 21 | include(clang-format) 22 | else() 23 | message("clang-format not found. Not setting up format targets") 24 | endif() 25 | -------------------------------------------------------------------------------- /cmake/FindClangTidy.cmake: -------------------------------------------------------------------------------- 1 | # Find Clang tidy 2 | # 3 | 4 | set(CLANG_TIDY_BIN_NAME 5 | clang-tidy 6 | clang-tidy-5.0 7 | clang-tidy-6.0 8 | clang-tidy-7 9 | clang-tidy-8) 10 | 11 | find_program(CLANG_TIDY_BIN NAMES ${CLANG_TIDY_BIN_NAME}) 12 | 13 | include(FindPackageHandleStandardArgs) 14 | find_package_handle_standard_args(CLANG_TIDY DEFAULT_MSG CLANG_TIDY_BIN) 15 | 16 | mark_as_advanced(CLANG_TIDY_BIN) 17 | 18 | if(CLANG_TIDY_FOUND) 19 | # A CMake script to find all source files and setup clang-tidy targets for 20 | # them 21 | include(clang-tidy) 22 | else() 23 | message("clang-tidy not found. Not setting up tidy targets") 24 | endif() 25 | -------------------------------------------------------------------------------- /cmake/FindXinerama.cmake: -------------------------------------------------------------------------------- 1 | # * Find the Xinerama include file and library 2 | # 3 | 4 | set(Xinerama_INC_SEARCH_PATH 5 | /usr/X11R6/include 6 | /usr/local/include 7 | /usr/include/X11 8 | /usr/openwin/include 9 | /usr/openwin/share/include 10 | /opt/graphics/OpenGL/include 11 | /usr/include) 12 | 13 | set(Xinerama_LIB_SEARCH_PATH 14 | /usr/X11R6/lib 15 | /usr/local/lib 16 | /usr/openwin/lib 17 | /usr/lib) 18 | 19 | find_path(Xinerama_INCLUDE_DIR X11/extensions/Xinerama.h 20 | ${Xinerama_INC_SEARCH_PATH}) 21 | 22 | find_library(Xinerama_LIBRARIES NAMES Xinerama PATH ${Xinerama_LIB_SEARCH_PATH}) 23 | 24 | if(Xinerama_INCLUDE_DIR AND Xinerama_LIBRARIES) 25 | set(Xinerama_FOUND TRUE) 26 | endif(Xinerama_INCLUDE_DIR AND Xinerama_LIBRARIES) 27 | 28 | if(Xinerama_FOUND) 29 | include(CheckLibraryExists) 30 | 31 | check_library_exists(${Xinerama_LIBRARIES} 32 | "XineramaQueryScreens" 33 | ${Xinerama_LIBRARIES} 34 | Xinerama_HAS_QUERY) 35 | 36 | if(NOT Xinerama_HAS_QUERY AND Xinerama_FIND_REQUIRED) 37 | message(FATAL_ERROR "Could NOT find Xinerama") 38 | endif(NOT Xinerama_HAS_QUERY AND Xinerama_FIND_REQUIRED) 39 | endif(Xinerama_FOUND) 40 | 41 | mark_as_advanced(Xinerama_INCLUDE_DIR Xinerama_LIBRARIES) 42 | -------------------------------------------------------------------------------- /cmake/build.h.in: -------------------------------------------------------------------------------- 1 | #ifndef __BUILD_H 2 | #define __BUILD_H 3 | 4 | /* Conky build info */ 5 | 6 | #define BUILD_DATE "@BUILD_DATE@" 7 | #define BUILD_ARCH "@BUILD_ARCH@" 8 | 9 | #endif /* __BUILD_H */ 10 | -------------------------------------------------------------------------------- /cmake/clang-format.cmake: -------------------------------------------------------------------------------- 1 | set(CLANG_FORMAT_CXX_FILE_EXTENSIONS 2 | ${CLANG_FORMAT_CXX_FILE_EXTENSIONS} 3 | *.cpp 4 | *.h 5 | *.cxx 6 | *.hxx 7 | *.hpp 8 | *.cc 9 | *.hh 10 | *.ipp) 11 | 12 | foreach(PATTERN ${CLANG_FORMAT_CXX_FILE_EXTENSIONS}) 13 | list(APPEND CLANG_FORMAT_CXX_PATTERN ${CMAKE_SOURCE_DIR}/src/${PATTERN}) 14 | list(APPEND CLANG_FORMAT_CXX_PATTERN ${CMAKE_SOURCE_DIR}/tests/${PATTERN}) 15 | list(APPEND CLANG_FORMAT_CXX_PATTERN ${CMAKE_SOURCE_DIR}/lua/${PATTERN}) 16 | endforeach() 17 | 18 | file(GLOB_RECURSE CLANG_FORMAT_SRCS ${CLANG_FORMAT_CXX_PATTERN}) 19 | 20 | add_custom_target(clang-format 21 | COMMAND ${CLANG_FORMAT_BIN} -style=file -i 22 | ${CLANG_FORMAT_SRCS}) 23 | add_custom_target(check-clang-format 24 | COMMAND ${CMAKE_SOURCE_DIR}/bin/run-clang-format.py 25 | --color always 26 | --clang-format-executable ${CLANG_FORMAT_BIN} 27 | ${CLANG_FORMAT_SRCS}) 28 | -------------------------------------------------------------------------------- /cmake/clang-tidy.cmake: -------------------------------------------------------------------------------- 1 | get_target_property(CLANG_TIDY_SRCS_TMP conky SOURCES) 2 | get_target_property(conky_SRC_DIR conky SOURCE_DIR) 3 | 4 | if(BUILD_TESTS) 5 | get_target_property(CLANG_TIDY_SRCS_TMP_CORE conky_core SOURCES) 6 | list(APPEND CLANG_TIDY_SRCS_TMP ${CLANG_TIDY_SRCS_TMP_CORE}) 7 | endif() 8 | 9 | foreach(TMP_SRC ${CLANG_TIDY_SRCS_TMP}) 10 | if("${TMP_SRC}" MATCHES ".*\.cc|.*\.hh|.*\.[chi]pp|.*\.[chi]xx|.*\.ii") 11 | list(APPEND CLANG_TIDY_SRCS ${conky_SRC_DIR}/${TMP_SRC}) 12 | endif() 13 | endforeach(TMP_SRC) 14 | 15 | get_target_property(CLANG_INCLUDES_tmp conky INCLUDE_DIRECTORIES) 16 | foreach(TMP_INCLUDE ${CLANG_INCLUDES_tmp}) 17 | list(APPEND CLANG_INCLUDES -I${TMP_INCLUDE}) 18 | endforeach(TMP_INCLUDE) 19 | 20 | add_custom_target(clang-tidy 21 | COMMAND ${CLANG_TIDY_BIN} -config='' -fix -format-style=file 22 | ${CLANG_TIDY_SRCS} 23 | -- -std=c++17 -I${CMAKE_BINARY_DIR} ${CLANG_INCLUDES}) 24 | add_custom_target(check-clang-tidy 25 | COMMAND ${CLANG_TIDY_BIN} -config='' -format-style=file 26 | ${CLANG_TIDY_SRCS} 27 | -- -std=c++17 -I${CMAKE_BINARY_DIR} ${CLANG_INCLUDES}) 28 | -------------------------------------------------------------------------------- /cmake/scripts/clang-format-check-changed: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Required because cmake root isn't git root in this example 4 | CLANG_FORMAT_BIN=$1 5 | GIT_ROOT=`git rev-parse --show-toplevel` 6 | 7 | pushd ${GIT_ROOT} > /dev/null 8 | 9 | git status --porcelain \ 10 | | egrep '*\.cpp|*\.h|*\.cxx|*\.hxx|*\.hpp|*\.cc' \ 11 | | awk -F " " '{print $NF}' \ 12 | | xargs -r ${CLANG_FORMAT_BIN} -style=file -output-replacements-xml \ 13 | | grep "replacement offset" 2>&1 > /dev/null 14 | 15 | RET=$? 16 | popd > /dev/null 17 | 18 | exit ${RET} 19 | -------------------------------------------------------------------------------- /conky.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=conky 4 | Exec=conky --daemonize --pause=1 5 | StartupNotify=false 6 | Terminal=false 7 | Icon=conky-logomark-violet 8 | Categories=System;Monitor; 9 | -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Conky, a system monitor, based on torsmo 3 | # 4 | # Please see COPYING for details 5 | # 6 | # Copyright (c) 2005-2019 Brenden Matthews, et. al. (see AUTHORS) All rights 7 | # reserved. 8 | # 9 | # This program is free software: you can redistribute it and/or modify it under 10 | # the terms of the GNU General Public License as published by the Free Software 11 | # Foundation, either version 3 of the License, or (at your option) any later 12 | # version. 13 | # 14 | # This program is distributed in the hope that it will be useful, but WITHOUT 15 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 16 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 17 | # details. You should have received a copy of the GNU General Public License 18 | # along with this program. If not, see . 19 | # 20 | 21 | include(Docbook) 22 | 23 | if(BUILD_DOCS) 24 | wrap_xsltproc(lua config_settings variables) 25 | wrap_man(docs) 26 | endif(BUILD_DOCS) 27 | -------------------------------------------------------------------------------- /doc/docbook-xml/common/targetdatabase.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | 23 | 24 | 25 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 50 | -------------------------------------------------------------------------------- /doc/docbook-xml/html/autoidx-ng.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 14 | 15 | 16 | 17 | 18 | kosek 19 | 20 | 21 | -------------------------------------------------------------------------------- /doc/docbook-xml/html/keywords.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | , 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /doc/docbook-xml/html/manifest.xsl: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /doc/docgen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | xsltproc http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl docs.xml > docs.html && \ 4 | db2x_xsltproc -s man docs.xml -o docs.mxml && \ 5 | db2x_manxml docs.mxml && \ 6 | { echo ".TH CONKY 1 \"August 2005\" \"conky compiled August 2005\" \"User Commands\""; sed 1d < conky.1; } > conky.2 && \ 7 | mv conky.2 conky.1 && \ 8 | man ./conky.1 | col -b > README && \ 9 | mv README ../ 10 | -------------------------------------------------------------------------------- /extras/nano/README: -------------------------------------------------------------------------------- 1 | Append the contents of conky.nanorc to your $HOME/.nanorc for nano 2 | syntax coloring of your $HOME/.conkyrc file. 3 | -------------------------------------------------------------------------------- /extras/vim/README: -------------------------------------------------------------------------------- 1 | Vim filetype detection and syntax highlighting scripts for conky. 2 | 3 | Individual users can place them your personal .vim directory: 4 | 5 | ~/.vim/ftdetect/conkyrc.vim 6 | ~/.vim/syntax/conkyrc.vim 7 | 8 | Refer to your vim site documentation for system-wide installation. 9 | 10 | -------------------------------------------------------------------------------- /extras/vim/ftdetect/conkyrc.vim: -------------------------------------------------------------------------------- 1 | " Vim filetype detection file for Conky config files 2 | " 3 | 4 | au BufNewFile,BufRead *conkyrc set filetype=conkyrc 5 | au BufNewFile,BufRead conky.conf set filetype=conkyrc 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ReRunCMake.make: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | 3 | TARGETS:= 4 | empty:= 5 | space:= $(empty) $(empty) 6 | spaceplus:= $(empty)\ $(empty) 7 | 8 | TARGETS += $(subst $(space),$(spaceplus),$(wildcard /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/CMakeLists.txt)) 9 | TARGETS += $(subst $(space),$(spaceplus),$(wildcard /usr/local/Cellar/cmake/3.13.2/share/cmake/Modules/FindPackageHandleStandardArgs.cmake)) 10 | TARGETS += $(subst $(space),$(spaceplus),$(wildcard /usr/local/Cellar/cmake/3.13.2/share/cmake/Modules/FindPackageMessage.cmake)) 11 | TARGETS += $(subst $(space),$(spaceplus),$(wildcard /usr/local/Cellar/cmake/3.13.2/share/cmake/Modules/FindPkgConfig.cmake)) 12 | 13 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/cmake.check_cache: $(TARGETS) 14 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -H/Users/npyl/Manage-Conky/ConkyX/conky-for-macOS -B/Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX 15 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/install_postBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/install_postBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/install_postBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/install_postBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/package_postBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/package_postBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/package_postBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/CMakeScripts/package_postBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/Debug/toluapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/Debug/toluapp -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "/usr/local") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "FALSE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/tolua.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/bin/tolua.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h /usr/local/include/lua/lualib.h 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/tolua.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/tolua.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/tolua.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/tolua.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluabind.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/bin/toluabind.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluabind.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluabind.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluabind.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluabind.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluapp.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/tolua.o 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/Objects-normal/x86_64/toluabind.o 3 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp.build/dgph -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_event.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/lib/tolua_event.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_event.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_event.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_event.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_event.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_is.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/lib/tolua_is.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_is.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_is.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_is.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_is.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_map.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/lib/tolua_map.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/lib/tolua_event.h 7 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_map.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_map.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_map.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_map.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_push.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/lib/tolua_push.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_push.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_push.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_push.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_push.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_to.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/src/lib/tolua_to.c \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/3rdparty/toluapp/include/tolua++.h \ 4 | /usr/local/include/lua/lua.h /usr/local/include/lua/luaconf.h \ 5 | /usr/local/include/lua/lauxlib.h 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_to.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_to.dia -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_to.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_to.o -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/toluapp.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_event.o 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_is.o 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_map.o 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_push.o 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/Objects-normal/x86_64/tolua_to.o 6 | -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/3rdparty/toluapp/conky.build/Debug/toluapp_lib_static.build/dgph -------------------------------------------------------------------------------- /forConkyX/3rdparty/toluapp/toluapp.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ALL_BUILD 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ALL_BUILD: 9 | echo "" 10 | echo Build\ all\ projects 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for ZERO_CHECK 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeFiles/ZERO_CHECK: 9 | echo "" 10 | make -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeScripts/ReRunCMake.make 11 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/install_postBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/install_postBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/install_postBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/install_postBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for install 3 | .SUFFIXES: 4 | all: \ 5 | install_buildpart_0 6 | 7 | 8 | install_buildpart_0: 9 | /usr/local/Cellar/cmake/3.13.2/bin/cmake -DBUILD_TYPE=$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -P cmake_install.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/package_postBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/package_postBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/package_postBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/CMakeScripts/package_postBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for package 3 | .SUFFIXES: 4 | all: \ 5 | package_buildpart_0 6 | 7 | 8 | package_buildpart_0: 9 | cd /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX && /usr/local/Cellar/cmake/3.13.2/bin/cpack -C $(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) --config ./CPackConfig.cmake 10 | -------------------------------------------------------------------------------- /forConkyX/conky.build/Debug/ALL_BUILD.build/Script-0CE06630A11048B691E1B69C.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -C /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.make$CONFIGURATION all 3 | -------------------------------------------------------------------------------- /forConkyX/conky.build/Debug/ALL_BUILD.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/conky.build/Debug/ALL_BUILD.build/dgph -------------------------------------------------------------------------------- /forConkyX/conky.build/Debug/ZERO_CHECK.build/Script-EB2023D245C74709BB91CDE7.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -C /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.make$CONFIGURATION all 3 | -------------------------------------------------------------------------------- /forConkyX/conky.build/Debug/ZERO_CHECK.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/conky.build/Debug/ZERO_CHECK.build/dgph -------------------------------------------------------------------------------- /forConkyX/conky.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /forConkyX/conky.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /forConkyX/conky.xcodeproj/project.xcworkspace/xcuserdata/npyl.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/conky.xcodeproj/project.xcworkspace/xcuserdata/npyl.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /forConkyX/conky.xcodeproj/project.xcworkspace/xcuserdata/npyl.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildLocationStyle 6 | UseTargetSettings 7 | 8 | 9 | -------------------------------------------------------------------------------- /forConkyX/conky.xcodeproj/xcuserdata/npyl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ALL_BUILD.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | ZERO_CHECK.xcscheme_^#shared#^_ 13 | 14 | orderHint 15 | 1 16 | 17 | conky.xcscheme_^#shared#^_ 18 | 19 | orderHint 20 | 2 21 | 22 | convertconf.xcscheme_^#shared#^_ 23 | 24 | orderHint 25 | 3 26 | 27 | defconfig.xcscheme_^#shared#^_ 28 | 29 | orderHint 30 | 4 31 | 32 | install.xcscheme_^#shared#^_ 33 | 34 | orderHint 35 | 5 36 | 37 | package.xcscheme_^#shared#^_ 38 | 39 | orderHint 40 | 6 41 | 42 | toluapp.xcscheme_^#shared#^_ 43 | 44 | orderHint 45 | 7 46 | 47 | toluapp_lib_static.xcscheme_^#shared#^_ 48 | 49 | orderHint 50 | 8 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/convertconf_cmakeRulesBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for convertconf 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua convertconf.h convertconf 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/convertconf_cmakeRulesBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for convertconf 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua convertconf.h convertconf 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/convertconf_cmakeRulesBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for convertconf 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua convertconf.h convertconf 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/convertconf_cmakeRulesBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for convertconf 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/convertconf.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/extras/convert.lua convertconf.h convertconf 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/defconfig_cmakeRulesBuildPhase.makeDebug: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for defconfig 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf defconfig.h defconfig 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/defconfig_cmakeRulesBuildPhase.makeMinSizeRel: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for defconfig 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf defconfig.h defconfig 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/defconfig_cmakeRulesBuildPhase.makeRelWithDebInfo: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for defconfig 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf defconfig.h defconfig 11 | -------------------------------------------------------------------------------- /forConkyX/data/CMakeScripts/defconfig_cmakeRulesBuildPhase.makeRelease: -------------------------------------------------------------------------------- 1 | # Generated by CMake, DO NOT EDIT 2 | # Custom rules for defconfig 3 | .SUFFIXES: 4 | all: \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h 6 | 7 | 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/defconfig.h: \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/bin/text2c.sh /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data/conky.conf defconfig.h defconfig 11 | -------------------------------------------------------------------------------- /forConkyX/data/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/data 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "/usr/local") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "FALSE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /forConkyX/data/conky.build/Debug/convertconf.build/Script-DAB8A8CDCC064A19A10BBDA0.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -C /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/CMakeScripts/convertconf_cmakeRulesBuildPhase.make$CONFIGURATION all 3 | -------------------------------------------------------------------------------- /forConkyX/data/conky.build/Debug/convertconf.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/data/conky.build/Debug/convertconf.build/dgph -------------------------------------------------------------------------------- /forConkyX/data/conky.build/Debug/defconfig.build/Script-A2C5498FB2C34850BA9C4A32.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -C /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data -f /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/data/CMakeScripts/defconfig_cmakeRulesBuildPhase.make$CONFIGURATION all 3 | -------------------------------------------------------------------------------- /forConkyX/data/conky.build/Debug/defconfig.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/data/conky.build/Debug/defconfig.build/dgph -------------------------------------------------------------------------------- /forConkyX/doc/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/doc 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "/usr/local") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "FALSE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /forConkyX/lua/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/lua 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "/usr/local") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "FALSE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /forConkyX/src/Debug/conky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/Debug/conky -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/algebra.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/algebra.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/algebra.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/algebra.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/apcupsd.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/apcupsd.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/apcupsd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/apcupsd.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/c++wrap.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.cc \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.hh 5 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/c++wrap.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/c++wrap.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/c++wrap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/c++wrap.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/ccurl_thread.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/ccurl_thread.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/ccurl_thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/ccurl_thread.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cmus.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/cmus.cc \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/conky.h \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/common.h \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 7 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 8 | /usr/local/include/libintl.h \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 10 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 11 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 12 | /usr/local/include/lua/lauxlib.h \ 13 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/text_object.h \ 14 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/exec.h \ 15 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/update-cb.hh \ 16 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.hh \ 17 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/semaphore.hh \ 18 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/specials.h \ 19 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/eve.h \ 20 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/moc.h \ 21 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/mpd.h \ 22 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/apcupsd.h \ 23 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/sony.h 24 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cmus.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cmus.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cmus.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cmus.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/colours.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/colours.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/colours.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/colours.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/combine.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/combine.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/combine.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/combine.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/common.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/common.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/common.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/conky.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/conky.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/conky.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/conky.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/core.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/core.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/core.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cpu.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/cpu.cc \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/conky.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/common.h \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 7 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 8 | /usr/local/include/libintl.h \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 10 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 11 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 12 | /usr/local/include/lua/lauxlib.h \ 13 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/text_object.h \ 14 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/exec.h \ 15 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/update-cb.hh \ 16 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.hh \ 17 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/semaphore.hh \ 18 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/specials.h \ 19 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/eve.h \ 20 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/moc.h \ 21 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/mpd.h \ 22 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/apcupsd.h \ 23 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/sony.h 24 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cpu.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cpu.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/cpu.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/darwin.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/darwin.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/darwin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/darwin.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/data-source.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/data-source.cc \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/data-source.hh \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 6 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 7 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 8 | /usr/local/include/lua/lauxlib.h 9 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/data-source.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/data-source.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/data-source.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/data-source.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/diskio.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/diskio.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/diskio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/diskio.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/entropy.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/entropy.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/entropy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/entropy.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/eve.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/eve.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/eve.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/eve.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/exec.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/exec.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/exec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/exec.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fonts.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fonts.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fonts.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fonts.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fs.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fs.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/fs.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/imlib2.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/imlib2.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/imlib2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/imlib2.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/libmpdclient.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/libmpdclient.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/libmpdclient.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/libmpdclient.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/llua.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/llua.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/llua.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/llua.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/lua-config.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/lua-config.cc \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/lua-config.hh \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 6 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 7 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 8 | /usr/local/include/lua/lauxlib.h \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/data-source.hh \ 10 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 11 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 12 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 13 | /usr/local/include/libintl.h 14 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/lua-config.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/lua-config.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/lua-config.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/lua-config.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/luamm.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.cc \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 5 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 6 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 7 | /usr/local/include/lua/lauxlib.h 8 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/luamm.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/luamm.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/luamm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/luamm.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mail.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mail.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mail.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mail.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/main.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/main.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/main.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mboxscan.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mboxscan.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mboxscan.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mboxscan.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/misc.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/misc.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/misc.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/moc.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/moc.cc \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/conky.h \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/common.h \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 7 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 8 | /usr/local/include/libintl.h \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 10 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 11 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 12 | /usr/local/include/lua/lauxlib.h \ 13 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/text_object.h \ 14 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/exec.h \ 15 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/update-cb.hh \ 16 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.hh \ 17 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/semaphore.hh \ 18 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/specials.h \ 19 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/eve.h \ 20 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/moc.h \ 21 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/mpd.h \ 22 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/apcupsd.h \ 23 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/sony.h 24 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/moc.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/moc.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/moc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/moc.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mpd.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mpd.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mpd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/mpd.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/nc.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/nc.cc \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/nc.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 7 | /usr/local/include/libintl.h \ 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 9 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 10 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 11 | /usr/local/include/lua/lauxlib.h 12 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/nc.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/nc.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/nc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/nc.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/net_stat.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/net_stat.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/net_stat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/net_stat.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/prioqueue.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/prioqueue.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/prioqueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/prioqueue.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/proc.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/proc.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/proc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/proc.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/read_tcpip.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/read_tcpip.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/read_tcpip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/read_tcpip.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/scroll.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/scroll.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/scroll.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/scroll.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/setting.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.cc \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 7 | /usr/local/include/libintl.h \ 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 9 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 10 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 11 | /usr/local/include/lua/lauxlib.h 12 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/setting.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/setting.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/setting.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/setting.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/specials.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/specials.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/specials.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/specials.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/tailhead.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/tailhead.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/tailhead.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/tailhead.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/temphelper.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/temphelper.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/temphelper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/temphelper.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/template.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/template.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/template.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/template.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/text_object.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/text_object.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/text_object.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/text_object.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/timeinfo.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/timeinfo.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/timeinfo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/timeinfo.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/top.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/top.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/top.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/top.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/update-cb.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/update-cb.cc \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 6 | /usr/local/include/libintl.h \ 7 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/update-cb.hh \ 8 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.hh \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/semaphore.hh 10 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/update-cb.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/update-cb.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/update-cb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/update-cb.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/user.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/user.cc \ 2 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/forConkyX/config.h \ 3 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/conky.h \ 4 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/common.h \ 5 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/setting.hh \ 6 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/logging.h \ 7 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/i18n.h \ 8 | /usr/local/include/libintl.h \ 9 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/luamm.hh \ 10 | /usr/local/include/lua/lua.hpp /usr/local/include/lua/lua.h \ 11 | /usr/local/include/lua/luaconf.h /usr/local/include/lua/lualib.h \ 12 | /usr/local/include/lua/lauxlib.h \ 13 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/text_object.h \ 14 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/exec.h \ 15 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/update-cb.hh \ 16 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/c++wrap.hh \ 17 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/semaphore.hh \ 18 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/specials.h \ 19 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/eve.h \ 20 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/moc.h \ 21 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/mpd.h \ 22 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/apcupsd.h \ 23 | /Users/npyl/Manage-Conky/ConkyX/conky-for-macOS/src/sony.h 24 | -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/user.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/user.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/user.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/user.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/weather.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/weather.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/weather.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/weather.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/x11.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/x11.dia -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/x11.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/Objects-normal/x86_64/x11.o -------------------------------------------------------------------------------- /forConkyX/src/conky.build/Debug/conky.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/forConkyX/src/conky.build/Debug/conky.build/dgph -------------------------------------------------------------------------------- /logo/conky-logomark-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/logo/conky-logomark-violet.png -------------------------------------------------------------------------------- /logo/conky-logotype-horizontal-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/logo/conky-logotype-horizontal-violet.png -------------------------------------------------------------------------------- /logo/conky-logotype-vertical-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conky-for-macOS/conky-for-macOS/8f877bb1a30cf7ddcb51975dbd300953083cb856/logo/conky-logotype-vertical-violet.png -------------------------------------------------------------------------------- /lua/cairo_imlib2_helper.pkg: -------------------------------------------------------------------------------- 1 | $#include 2 | $#include 3 | 4 | void cairo_draw_image(const char *, cairo_surface_t *, int, int, double, double, 5 | double * return_scale_w, double * return_scale_h); 6 | -------------------------------------------------------------------------------- /lua/libcairo.patch: -------------------------------------------------------------------------------- 1 | --- lua/libcairo.c~ 2010-06-11 23:14:43.000000000 +0200 2 | +++ lua/libcairo.c 2010-06-12 10:47:51.000000000 +0200 3 | @@ -1452,12 +1452,12 @@ 4 | #endif 5 | { 6 | struct _cairo* cr = (( struct _cairo*) tolua_tousertype(tolua_S,1,0)); 7 | + int num_dashes = ((int) tolua_tonumber(tolua_S,3,0)); 8 | #ifdef __cplusplus 9 | double* dashes = Mtolua_new_dim(double, num_dashes); 10 | #else 11 | double* dashes = (double*) malloc((num_dashes)*sizeof(double)); 12 | #endif 13 | - int num_dashes = ((int) tolua_tonumber(tolua_S,3,0)); 14 | double offset = ((double) tolua_tonumber(tolua_S,4,0)); 15 | { 16 | #ifndef TOLUA_RELEASE 17 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=conky 2 | sonar.projectName=Conky 3 | sonar.sources=src 4 | sonar.cfamily.build-wrapper-output=build/bw-output 5 | sonar.cpp.std=c++17 6 | sonar.exclusions=3rdparty/**,tests/** 7 | sonar.cfamily.threads=4 8 | sonar.cfamily.llvm-cov.reportPath=build/test-conky-coverage-txt.txt 9 | -------------------------------------------------------------------------------- /src/bsdapm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | #ifndef _BSDAPM_H 30 | #define _BSDAPM_H 31 | 32 | void print_apm_adapter(struct text_object *, char *, unsigned int); 33 | void print_apm_battery_life(struct text_object *, char *, unsigned int); 34 | void print_apm_battery_time(struct text_object *, char *, unsigned int); 35 | 36 | #endif /* _BSDAPM_H */ 37 | -------------------------------------------------------------------------------- /src/build.h.in: -------------------------------------------------------------------------------- 1 | #ifndef __BUILD_H 2 | #define __BUILD_H 3 | 4 | /* Conky build info */ 5 | 6 | #define BUILD_DATE "@BUILD_DATE@" 7 | #define BUILD_ARCH "@BUILD_ARCH@" 8 | 9 | #endif /* __BUILD_H */ 10 | -------------------------------------------------------------------------------- /src/c++wrap.hh: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (C) 2010 Pavel Labath et al. 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU General Public License as published by 11 | * the Free Software Foundation, either version 3 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * You should have received a copy of the GNU General Public License 19 | * along with this program. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef CPPWRAP_HH 24 | #define CPPWRAP_HH 25 | 26 | #ifdef HAVE_O_CLOEXEC 27 | #include 28 | #else 29 | enum { O_CLOEXEC = 02000000 }; 30 | #endif 31 | 32 | #include 33 | #include 34 | #include 35 | #include 36 | 37 | std::string strerror_r(int errnum); 38 | std::pair pipe2(int flags); 39 | 40 | class errno_error : public std::runtime_error { 41 | typedef std::runtime_error Base; 42 | 43 | public: 44 | explicit errno_error(const std::string &prefix, int err_ = errno) 45 | : Base(prefix + ": " + strerror_r(err_)), err(err_) {} 46 | 47 | const int err; 48 | }; 49 | 50 | #endif /* CPPWRAP_HH */ 51 | -------------------------------------------------------------------------------- /src/colours.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | #ifndef _COLOURS_H 30 | #define _COLOURS_H 31 | 32 | #include 33 | 34 | unsigned int adjust_colours(unsigned int); 35 | unsigned long *do_gradient(int, unsigned long, unsigned long); 36 | 37 | long get_x11_color(const std::string &colour); 38 | // XXX: when everyone uses C++ strings, remove this C version 39 | long get_x11_color(const char *); 40 | 41 | #endif /* _COLOURS_H */ 42 | -------------------------------------------------------------------------------- /src/combine.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | #ifndef _COMBINE_H 30 | #define _COMBINE_H 31 | 32 | void parse_combine_arg(struct text_object *, const char *); 33 | void print_combine(struct text_object *, char *, unsigned int); 34 | void free_combine(struct text_object *); 35 | 36 | #endif /* _COMBINE_H */ 37 | -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef _CPU_H 31 | #define _CPU_H 32 | 33 | #ifdef __x86_64__ 34 | uintmax_t rdtsc(void); 35 | void get_cpu_clock_speed(char *, unsigned int); 36 | uint8_t has_tsc_reg(void); 37 | void print_freq2(struct text_object *, char *, unsigned int); 38 | #endif /* __x86_64__ */ 39 | 40 | #endif /* _CPU_H */ 41 | -------------------------------------------------------------------------------- /src/dragonfly.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | 3 | #ifndef DRAGONFLY_H_ 4 | #define DRAGONFLY_H_ 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include "common.h" 12 | #if (defined(i386) || defined(__i386__)) 13 | #include 14 | #endif /* i386 || __i386__ */ 15 | 16 | int get_entropy_avail(unsigned int *); 17 | int get_entropy_poolsize(unsigned int *); 18 | 19 | #endif /*DRAGONFLY_H_*/ 20 | -------------------------------------------------------------------------------- /src/haiku.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | 3 | #ifndef HAIKU_H_ 4 | #define HAIKU_H_ 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | 13 | #include 14 | #include 15 | #include 16 | 17 | #include 18 | 19 | #include 20 | 21 | #include "common.h" 22 | #include "conky.h" 23 | 24 | int get_entropy_avail(unsigned int *); 25 | int get_entropy_poolsize(unsigned int *); 26 | 27 | /* let's just mimic statfs64 */ 28 | 29 | struct statfs : public fs_info {}; 30 | 31 | inline int statfs(const char *path, struct statfs *buf) { 32 | return fs_stat_dev(dev_for_path(path), buf); 33 | } 34 | 35 | #define f_blocks total_blocks 36 | #define f_bsize block_size 37 | #define f_bavail free_blocks 38 | #define f_bfree free_blocks 39 | #define f_fstypename fsh_name 40 | 41 | #endif /*HAIKU_H_*/ 42 | -------------------------------------------------------------------------------- /src/hddtemp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2007 Toni Spets 8 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 9 | * (see AUTHORS) 10 | * All rights reserved. 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU General Public License as published by 14 | * the Free Software Foundation, either version 3 of the License, or 15 | * (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU General Public License for more details. 21 | * You should have received a copy of the GNU General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | 26 | #ifndef HDDTEMP_H_ 27 | #define HDDTEMP_H_ 28 | 29 | int update_hddtemp(void); 30 | void free_hddtemp(struct text_object *); 31 | void print_hddtemp(struct text_object *, char *, unsigned int); 32 | 33 | #endif /*HDDTEMP_H_*/ 34 | -------------------------------------------------------------------------------- /src/i18n.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #ifndef I18N_H_ 26 | #define I18N_H_ 27 | 28 | #define _nop(string) string 29 | 30 | #ifdef BUILD_I18N 31 | #include 32 | #define _(string) gettext(string) 33 | #else 34 | #define _(string) string 35 | #endif 36 | 37 | #endif /*I18N_H_*/ 38 | -------------------------------------------------------------------------------- /src/ibm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #ifndef _IBM_H 26 | #define _IBM_H 27 | 28 | void get_ibm_acpi_fan(struct text_object *, char *, unsigned int); 29 | int get_ibm_acpi_temps(void); 30 | void get_ibm_acpi_volume(struct text_object *, char *, unsigned int); 31 | void get_ibm_acpi_brightness(struct text_object *, char *, unsigned int); 32 | void get_ibm_acpi_thinklight(struct text_object *, char *, unsigned int); 33 | 34 | void parse_ibm_temps_arg(struct text_object *, const char *); 35 | void print_ibm_temps(struct text_object *, char *, unsigned int); 36 | 37 | #endif /* _IBM_H */ 38 | -------------------------------------------------------------------------------- /src/ical.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #ifndef ICAL_H_ 26 | #define ICAL_H_ 27 | 28 | void parse_ical_args(struct text_object *, const char *, void *, void *); 29 | void print_ical(struct text_object *, char *, unsigned int); 30 | void free_ical(struct text_object *); 31 | 32 | #endif /*ICAL_H_*/ 33 | -------------------------------------------------------------------------------- /src/irc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #ifndef IRC_H_ 26 | #define IRC_H_ 27 | 28 | void parse_irc_args(struct text_object *, const char *); 29 | void print_irc(struct text_object *, char *, unsigned int); 30 | void free_irc(struct text_object *); 31 | 32 | #endif /*IRC_H_*/ 33 | -------------------------------------------------------------------------------- /src/journal.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef _JOURNAL_H 31 | #define _JOURNAL_H 32 | 33 | void free_journal(struct text_object *); 34 | void init_journal(const char *, const char *, struct text_object *, void *); 35 | void print_journal(struct text_object *, char *, unsigned int); 36 | 37 | #endif /* _JOURNAL_H */ 38 | -------------------------------------------------------------------------------- /src/lua-config.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (C) 2010 Pavel Labath et al. 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU General Public License as published by 11 | * the Free Software Foundation, either version 3 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * You should have received a copy of the GNU General Public License 19 | * along with this program. If not, see . 20 | * 21 | */ 22 | 23 | #include 24 | 25 | #include "lua-config.hh" 26 | 27 | #include "data-source.hh" 28 | #include "setting.hh" 29 | 30 | namespace conky { 31 | void export_symbols(lua::state &l) { 32 | lua::stack_sentry s(l); 33 | l.checkstack(3); 34 | 35 | l.newtable(); 36 | { 37 | export_data_sources(l); 38 | 39 | l.newtable(); 40 | l.rawsetfield(-2, "config"); 41 | } 42 | l.setglobal("conky"); 43 | } 44 | } // namespace conky 45 | -------------------------------------------------------------------------------- /src/lua-config.hh: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (C) 2010 Pavel Labath et al. 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU General Public License as published by 11 | * the Free Software Foundation, either version 3 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * You should have received a copy of the GNU General Public License 19 | * along with this program. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef LUA_CONFIG_HH 24 | #define LUA_CONFIG_HH 25 | 26 | #include "luamm.hh" 27 | 28 | namespace conky { 29 | void export_symbols(lua::state &l); 30 | } 31 | 32 | #endif /* LUA_CONFIG_HH */ 33 | -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 12 | * (see AUTHORS) 13 | * All rights reserved. 14 | * 15 | * This program is free software: you can redistribute it and/or modify 16 | * it under the terms of the GNU General Public License as published by 17 | * the Free Software Foundation, either version 3 of the License, or 18 | * (at your option) any later version. 19 | * 20 | * This program is distributed in the hope that it will be useful, 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 | * GNU General Public License for more details. 24 | * You should have received a copy of the GNU General Public License 25 | * along with this program. If not, see . 26 | * 27 | */ 28 | 29 | #ifndef _main_h_ 30 | #define _main_h_ 31 | 32 | #endif /* _main_h_ */ 33 | -------------------------------------------------------------------------------- /src/mboxscan.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2006 Marco Candrian 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef _MBOXSCAN_H_ 31 | #define _MBOXSCAN_H_ 32 | 33 | void parse_mboxscan_arg(struct text_object *, const char *); 34 | void print_mboxscan(struct text_object *, char *, unsigned int); 35 | void free_mboxscan(struct text_object *); 36 | 37 | #endif /* _MBOXSCAN_H_ */ 38 | -------------------------------------------------------------------------------- /src/mysql.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #ifndef MYSQL_H_ 26 | #define MYSQL_H_ 27 | 28 | void print_mysql(struct text_object *, char *, unsigned int); 29 | 30 | #endif /*MYSQL_H_*/ 31 | -------------------------------------------------------------------------------- /src/netbsd.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | 3 | #ifndef NETBSD_H_ 4 | #define NETBSD_H_ 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include 23 | 24 | #include 25 | 26 | #include 27 | 28 | #include 29 | 30 | #include "common.h" 31 | #include "conky.h" 32 | 33 | int get_entropy_avail(unsigned int *); 34 | int get_entropy_poolsize(unsigned int *); 35 | 36 | #endif /*NETBSD_H_*/ 37 | -------------------------------------------------------------------------------- /src/nvidia.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2008 Markus Meissner 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef NVIDIA_CONKY_H 31 | #define NVIDIA_CONKY_H 32 | 33 | int set_nvidia_query(struct text_object *, const char *, unsigned int); 34 | void print_nvidia_value(struct text_object *, char *, unsigned int); 35 | double get_nvidia_barval(struct text_object *); 36 | void free_nvidia(struct text_object *); 37 | 38 | #endif 39 | -------------------------------------------------------------------------------- /src/openbsd.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | 3 | #ifndef OPENBSD_H_ 4 | #define OPENBSD_H_ 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include "common.h" 11 | 12 | void parse_obsd_sensor(struct text_object *, const char *); 13 | void print_obsd_sensors_temp(struct text_object *, char *, int); 14 | void print_obsd_sensors_fan(struct text_object *, char *, int); 15 | void print_obsd_sensors_volt(struct text_object *, char *, int); 16 | void get_obsd_vendor(struct text_object *, char *buf, 17 | size_t client_buffer_size); 18 | void get_obsd_product(struct text_object *, char *buf, 19 | size_t client_buffer_size); 20 | 21 | #if defined(i386) || defined(__i386__) 22 | typedef struct apm_power_info *apm_info_t; 23 | #endif 24 | 25 | int get_entropy_avail(unsigned int *); 26 | int get_entropy_poolsize(unsigned int *); 27 | 28 | #endif /*OPENBSD_H_*/ 29 | -------------------------------------------------------------------------------- /src/rss.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #ifndef RSS_H_ 26 | #define RSS_H_ 27 | 28 | void rss_scan_arg(struct text_object *, const char *); 29 | void rss_print_info(struct text_object *, char *, unsigned int); 30 | void rss_free_obj_info(struct text_object *); 31 | 32 | #endif /*RSS_H_*/ 33 | -------------------------------------------------------------------------------- /src/scroll.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | #ifndef _SCROLL_H 30 | #define _SCROLL_H 31 | 32 | void parse_scroll_arg(struct text_object *, const char *, void *, char *); 33 | void print_scroll(struct text_object *, char *, unsigned int); 34 | void free_scroll(struct text_object *); 35 | 36 | #endif /* _SCROLL_H */ 37 | -------------------------------------------------------------------------------- /src/smapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * smapi.h: conky support for IBM Thinkpad smapi 4 | * 5 | * Copyright (C) 2007 Phil Sutter 6 | * 7 | * This library is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License as published by 9 | * the Free Software Foundation; either version 2 of the License, or 10 | * (at your option) any later version. 11 | * 12 | * This library is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this library; if not, write to the Free Software 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 20 | * USA. 21 | * 22 | */ 23 | 24 | #ifndef _SMAPI_H 25 | #define _SMAPI_H 26 | 27 | void print_smapi(struct text_object *, char *, unsigned int); 28 | uint8_t smapi_bat_percentage(struct text_object *); 29 | void print_smapi_bat_temp(struct text_object *, char *, unsigned int); 30 | void print_smapi_bat_power(struct text_object *, char *, unsigned int); 31 | double smapi_bat_barval(struct text_object *); 32 | int smapi_bat_installed(struct text_object *obj); 33 | 34 | #endif /* _SMAPI_H */ 35 | -------------------------------------------------------------------------------- /src/solaris.h: -------------------------------------------------------------------------------- 1 | #ifndef SOLARIS_H_ 2 | #define SOLARIS_H_ 3 | 4 | int get_entropy_avail(unsigned int *); 5 | int get_entropy_poolsize(unsigned int *); 6 | 7 | #endif /*SOLARIS_H_*/ 8 | -------------------------------------------------------------------------------- /src/sony.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * Copyright (c) 2009 Yeon-Hyeong Yang 9 | * (see AUTHORS) 10 | * All rights reserved. 11 | * 12 | * This program is free software: you can redistribute it and/or modify 13 | * it under the terms of the GNU General Public License as published by 14 | * the Free Software Foundation, either version 3 of the License, or 15 | * (at your option) any later version. 16 | * 17 | * This program is distributed in the hope that it will be useful, 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 | * GNU General Public License for more details. 21 | * You should have received a copy of the GNU General Public License 22 | * along with this program. If not, see . 23 | * 24 | */ 25 | /* conky support for information from sony_laptop kernel module 26 | * information from sony_laptop kernel module 27 | * /sys/devices/platform/sony-laptop 28 | * I mimicked the methods from ibm.c 29 | * Yeon-Hyeong Yang */ 30 | 31 | #ifndef _SONY_H 32 | #define _SONY_H 33 | 34 | void get_sony_fanspeed(struct text_object *, char *, unsigned int); 35 | 36 | #endif /* _SONY_H */ 37 | -------------------------------------------------------------------------------- /src/temphelper.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * temphelper.h: aid in converting temperature units 4 | * 5 | * Copyright (C) 2008 Phil Sutter 6 | * 7 | * This library is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License as published by 9 | * the Free Software Foundation; either version 2 of the License, or 10 | * (at your option) any later version. 11 | * 12 | * This library is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this library; if not, write to the Free Software 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 20 | * USA. 21 | * 22 | */ 23 | 24 | #ifndef TEMPHELPER_H 25 | #define TEMPHELPER_H 26 | 27 | #include 28 | 29 | enum TEMP_UNIT { TEMP_CELSIUS, TEMP_FAHRENHEIT }; 30 | 31 | int temp_print(char *, std::size_t, double, enum TEMP_UNIT, int); 32 | 33 | #endif /* TEMPHELPER_H */ 34 | -------------------------------------------------------------------------------- /src/template.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef _TEMPLATE_H 31 | #define _TEMPLATE_H 32 | 33 | char *find_and_replace_templates(const char *); 34 | int text_contains_templates(const char *); 35 | 36 | #endif /* _TEMPLATE_H */ 37 | -------------------------------------------------------------------------------- /src/user.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef _USER_H 31 | #define _USER_H 32 | 33 | void print_gid_name(struct text_object *obj, char *p, unsigned int p_max_size); 34 | void print_uid_name(struct text_object *obj, char *p, unsigned int p_max_size); 35 | 36 | #endif /* _USER_H */ 37 | -------------------------------------------------------------------------------- /src/weather.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Please see COPYING for details 6 | * 7 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 8 | * (see AUTHORS) 9 | * All rights reserved. 10 | * 11 | * This program is free software: you can redistribute it and/or modify 12 | * it under the terms of the GNU General Public License as published by 13 | * the Free Software Foundation, either version 3 of the License, or 14 | * (at your option) any later version. 15 | * 16 | * This program is distributed in the hope that it will be useful, 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | * GNU General Public License for more details. 20 | * You should have received a copy of the GNU General Public License 21 | * along with this program. If not, see . 22 | * 23 | */ 24 | 25 | #include "weather.h" 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | #include 32 | #include "ccurl_thread.h" 33 | #include "config.h" 34 | #include "conky.h" 35 | #include "logging.h" 36 | #include "temphelper.h" 37 | #include "text_object.h" 38 | 39 | void print_weather(struct text_object *obj, char *p, unsigned int p_max_size) { 40 | (void)obj; 41 | strncpy(p, "TODO...", p_max_size); 42 | } 43 | -------------------------------------------------------------------------------- /src/weather.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen 12 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 13 | * (see AUTHORS) 14 | * All rights reserved. 15 | * 16 | * This program is free software: you can redistribute it and/or modify 17 | * it under the terms of the GNU General Public License as published by 18 | * the Free Software Foundation, either version 3 of the License, or 19 | * (at your option) any later version. 20 | * 21 | * This program is distributed in the hope that it will be useful, 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | * GNU General Public License for more details. 25 | * You should have received a copy of the GNU General Public License 26 | * along with this program. If not, see . 27 | * 28 | */ 29 | 30 | #ifndef WEATHER_H_ 31 | #define WEATHER_H_ 32 | 33 | void print_weather(struct text_object *, char *, unsigned int); 34 | 35 | #endif /* WEATHER_H_ */ 36 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.centos6-gcc-7: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/centos6-base:latest 3 | 4 | RUN yum -y -q install \ 5 | devtoolset-7 \ 6 | && yum clean all 7 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.centos7-clang-5: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/centos7-base:latest 3 | 4 | RUN yum -y -q install \ 5 | llvm-toolset-7-clang \ 6 | llvm-toolset-7-llvm \ 7 | llvm-toolset-7-clang-tools-extra \ 8 | && yum clean all 9 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.centos7-gcc-7: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/centos7-base:latest 3 | 4 | RUN yum -y -q install \ 5 | devtoolset-7 \ 6 | && yum clean all 7 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.centos7-gcc-8: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/centos7-base:latest 3 | 4 | RUN yum -y -q install \ 5 | devtoolset-8 \ 6 | && yum clean all 7 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.fedora-29-base: -------------------------------------------------------------------------------- 1 | FROM fedora:29 2 | 3 | ENV SCCACHE_VER=0.2.8 4 | 5 | RUN dnf update -y -q \ 6 | && dnf -y -q install \ 7 | audacious-devel \ 8 | cairo-devel \ 9 | cmake \ 10 | dbus-glib-devel \ 11 | docbook2X \ 12 | freetype-devel \ 13 | git \ 14 | imlib2-devel \ 15 | lcov \ 16 | libcurl-devel \ 17 | libical-devel \ 18 | libircclient-devel \ 19 | libmicrohttpd-devel \ 20 | librsvg2-devel \ 21 | libX11-devel \ 22 | libXdamage-devel \ 23 | libXext-devel \ 24 | libXft-devel \ 25 | libXinerama-devel \ 26 | libxml2-devel \ 27 | libXNVCtrl-devel \ 28 | lua-devel \ 29 | make \ 30 | man \ 31 | mysql-devel \ 32 | ncurses-devel \ 33 | openssl-devel \ 34 | patch \ 35 | pulseaudio-libs-devel \ 36 | readline-devel \ 37 | systemd-devel \ 38 | xmms2-devel \ 39 | && curl -sL https://github.com/mozilla/sccache/releases/download/${SCCACHE_VER}/sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz -o sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz \ 40 | && tar xf sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz \ 41 | && cp sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl/sccache /usr/bin \ 42 | && rm -rf sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl* 43 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.fedora-29-clang-7: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/fedora-29-base:latest 3 | 4 | RUN dnf -y -q install \ 5 | llvm \ 6 | clang \ 7 | libcxx-devel \ 8 | libcxxabi-devel \ 9 | && curl -Ls https://rpm.nodesource.com/setup_11.x -o npm.sh \ 10 | && bash npm.sh \ 11 | && rm npm.sh \ 12 | && dnf -y -q install npm \ 13 | && dnf clean all \ 14 | && npm install -g lcov-summary \ 15 | && npm cache clean --force 16 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.fedora-29-gcc-8: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/fedora-29-base:latest 3 | 4 | RUN dnf -qy install \ 5 | gcc \ 6 | gcc-c++ \ 7 | && dnf clean all 8 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.fedora-31-base: -------------------------------------------------------------------------------- 1 | FROM fedora:31 2 | 3 | ENV SCCACHE_VER=0.2.8 4 | 5 | RUN dnf update -y -q \ 6 | && dnf -y -q install \ 7 | audacious-devel \ 8 | cairo-devel \ 9 | cmake \ 10 | dbus-glib-devel \ 11 | docbook2X \ 12 | freetype-devel \ 13 | git \ 14 | imlib2-devel \ 15 | lcov \ 16 | libcurl-devel \ 17 | libical-devel \ 18 | libircclient-devel \ 19 | libmicrohttpd-devel \ 20 | librsvg2-devel \ 21 | libX11-devel \ 22 | libXdamage-devel \ 23 | libXext-devel \ 24 | libXft-devel \ 25 | libXinerama-devel \ 26 | libxml2-devel \ 27 | libXNVCtrl-devel \ 28 | lua-devel \ 29 | make \ 30 | man \ 31 | mysql-devel \ 32 | ncurses-devel \ 33 | openssl-devel \ 34 | patch \ 35 | pulseaudio-libs-devel \ 36 | readline-devel \ 37 | systemd-devel \ 38 | xmms2-devel \ 39 | && curl -sL https://github.com/mozilla/sccache/releases/download/${SCCACHE_VER}/sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz -o sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz \ 40 | && tar xf sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz \ 41 | && cp sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl/sccache /usr/bin \ 42 | && rm -rf sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl* 43 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.fedora-31-clang-8: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/fedora-31-base:latest 3 | 4 | RUN dnf -y -q install \ 5 | llvm \ 6 | clang \ 7 | libcxx-devel \ 8 | libcxxabi-devel \ 9 | npm \ 10 | && dnf clean all \ 11 | && npm install -g lcov-summary \ 12 | && npm cache clean --force 13 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-base: -------------------------------------------------------------------------------- 1 | FROM ubuntu:bionic 2 | 3 | ENV SCCACHE_VER=0.2.8 4 | 5 | RUN apt-get update \ 6 | && DEBIAN_FRONTEND=noninteractive \ 7 | apt-get install -qy --no-install-recommends \ 8 | audacious-dev \ 9 | cmake \ 10 | docbook2x \ 11 | git \ 12 | gpg \ 13 | gpg-agent \ 14 | lcov \ 15 | less \ 16 | libaudclient-dev \ 17 | libcairo2-dev \ 18 | libcurl4-openssl-dev \ 19 | libical-dev \ 20 | libimlib2-dev \ 21 | libircclient-dev \ 22 | libiw-dev \ 23 | liblua5.3-dev \ 24 | libmicrohttpd-dev \ 25 | libmysqlclient-dev \ 26 | libpulse-dev \ 27 | librsvg2-dev \ 28 | libssl-dev \ 29 | libsystemd-dev \ 30 | libxdamage-dev \ 31 | libxext-dev \ 32 | libxft-dev \ 33 | libxinerama-dev \ 34 | libxml2-dev \ 35 | libxmmsclient-dev \ 36 | libxnvctrl-dev \ 37 | man \ 38 | ncurses-dev \ 39 | software-properties-common \ 40 | wget \ 41 | && wget -q https://github.com/mozilla/sccache/releases/download/${SCCACHE_VER}/sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz -O sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz \ 42 | && tar xf sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl.tar.gz \ 43 | && cp sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl/sccache /usr/bin \ 44 | && rm -rf sccache-${SCCACHE_VER}-x86_64-unknown-linux-musl* 45 | 46 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-clang-7: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/ubuntu-base:latest 3 | 4 | RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ 5 | && apt-key add llvm-snapshot.gpg.key \ 6 | && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main' \ 7 | && DEBIAN_FRONTEND=noninteractive \ 8 | apt-get install -qy --no-install-recommends \ 9 | clang-7 \ 10 | lldb-7 \ 11 | lld-7 \ 12 | libc++-7-dev \ 13 | libc++abi-7-dev \ 14 | && apt-get clean \ 15 | && rm -rf /var/lib/apt/lists/* \ 16 | && wget https://deb.nodesource.com/setup_11.x -O npm.sh \ 17 | && bash npm.sh \ 18 | && rm npm.sh \ 19 | && apt-get install -y nodejs \ 20 | && npm install -g lcov-summary \ 21 | && npm cache clean --force 22 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-clang-8: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/ubuntu-base:latest 3 | 4 | RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ 5 | && apt-key add llvm-snapshot.gpg.key \ 6 | && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main' \ 7 | && DEBIAN_FRONTEND=noninteractive \ 8 | apt-get install -qy --no-install-recommends \ 9 | clang-8 \ 10 | lldb-8 \ 11 | lld-8 \ 12 | libc++-8-dev \ 13 | libc++abi-8-dev \ 14 | clang-tools-8 \ 15 | clang-format-8 \ 16 | clang-tidy-8 \ 17 | && apt-get clean \ 18 | && rm -rf /var/lib/apt/lists/* 19 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-gcc-5: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/ubuntu-base:latest 3 | 4 | RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ 5 | && apt-key add llvm-snapshot.gpg.key \ 6 | && add-apt-repository ppa:ubuntu-toolchain-r/test \ 7 | && DEBIAN_FRONTEND=noninteractive \ 8 | apt-get install -qy --no-install-recommends \ 9 | g++-5 \ 10 | && apt-get clean \ 11 | && rm -rf /var/lib/apt/lists/* 12 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-gcc-6: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/ubuntu-base:latest 3 | 4 | RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ 5 | && apt-key add llvm-snapshot.gpg.key \ 6 | && add-apt-repository ppa:ubuntu-toolchain-r/test \ 7 | && DEBIAN_FRONTEND=noninteractive \ 8 | apt-get install -qy --no-install-recommends \ 9 | g++-6 \ 10 | && apt-get clean \ 11 | && rm -rf /var/lib/apt/lists/* 12 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-gcc-7: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/ubuntu-base:latest 3 | 4 | RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ 5 | && apt-key add llvm-snapshot.gpg.key \ 6 | && add-apt-repository ppa:ubuntu-toolchain-r/test \ 7 | && DEBIAN_FRONTEND=noninteractive \ 8 | apt-get install -qy --no-install-recommends \ 9 | g++-7 \ 10 | && apt-get clean \ 11 | && rm -rf /var/lib/apt/lists/* 12 | -------------------------------------------------------------------------------- /tests/dockerfiles/Dockerfile.ubuntu-gcc-8: -------------------------------------------------------------------------------- 1 | ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky 2 | FROM ${IMAGE}/builder/ubuntu-base:latest 3 | 4 | RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ 5 | && apt-key add llvm-snapshot.gpg.key \ 6 | && add-apt-repository ppa:ubuntu-toolchain-r/test \ 7 | && DEBIAN_FRONTEND=noninteractive \ 8 | apt-get install -qy --no-install-recommends \ 9 | g++-8 \ 10 | && apt-get clean \ 11 | && rm -rf /var/lib/apt/lists/* 12 | -------------------------------------------------------------------------------- /tests/llvm-gcov.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | if hash llvm-cov 2>/dev/null; then 4 | llvm_cov="llvm-cov" 5 | elif hash llvm-cov-7 2>/dev/null; then 6 | llvm_cov="llvm-cov-7" 7 | elif hash llvm-cov-8 2>/dev/null; then 8 | llvm_cov="llvm-cov-8" 9 | elif hash llvm-cov70 2>/dev/null; then 10 | llvm_cov="llvm-cov70" 11 | elif hash llvm-cov80 2>/dev/null; then 12 | llvm_cov="llvm-cov80" 13 | fi 14 | 15 | exec $llvm_cov gcov "$@" 16 | -------------------------------------------------------------------------------- /tests/test-common.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 12 | * (see AUTHORS) 13 | * All rights reserved. 14 | * 15 | * This program is free software: you can redistribute it and/or modify 16 | * it under the terms of the GNU General Public License as published by 17 | * the Free Software Foundation, either version 3 of the License, or 18 | * (at your option) any later version. 19 | * 20 | * This program is distributed in the hope that it will be useful, 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 | * GNU General Public License for more details. 24 | * You should have received a copy of the GNU General Public License 25 | * along with this program. If not, see . 26 | * 27 | */ 28 | 29 | #define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do 30 | // this in one cpp file 31 | 32 | #include "catch2/catch.hpp" 33 | 34 | #include 35 | 36 | TEST_CASE("to_real_path becomes homedir", "[to_real_path]") { 37 | REQUIRE(to_real_path("~/test") == std::string(getenv("HOME")) + "/test"); 38 | } 39 | -------------------------------------------------------------------------------- /tests/test-darwin.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 12 | * (see AUTHORS) 13 | * All rights reserved. 14 | * 15 | * This program is free software: you can redistribute it and/or modify 16 | * it under the terms of the GNU General Public License as published by 17 | * the Free Software Foundation, either version 3 of the License, or 18 | * (at your option) any later version. 19 | * 20 | * This program is distributed in the hope that it will be useful, 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 | * GNU General Public License for more details. 24 | * You should have received a copy of the GNU General Public License 25 | * along with this program. If not, see . 26 | * 27 | */ 28 | 29 | #include "catch2/catch.hpp" 30 | 31 | #include 32 | 33 | TEST_CASE("get_entropy_avail returns 1", "[get_entropy_avail]") { 34 | unsigned int unused = 0; 35 | REQUIRE(get_entropy_avail(&unused) == 1); 36 | } 37 | -------------------------------------------------------------------------------- /tests/test-linux.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Conky, a system monitor, based on torsmo 4 | * 5 | * Any original torsmo code is licensed under the BSD license 6 | * 7 | * All code written since the fork of torsmo is licensed under the GPL 8 | * 9 | * Please see COPYING for details 10 | * 11 | * Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al. 12 | * (see AUTHORS) 13 | * All rights reserved. 14 | * 15 | * This program is free software: you can redistribute it and/or modify 16 | * it under the terms of the GNU General Public License as published by 17 | * the Free Software Foundation, either version 3 of the License, or 18 | * (at your option) any later version. 19 | * 20 | * This program is distributed in the hope that it will be useful, 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 | * GNU General Public License for more details. 24 | * You should have received a copy of the GNU General Public License 25 | * along with this program. If not, see . 26 | * 27 | */ 28 | 29 | #include "catch2/catch.hpp" 30 | 31 | #include 32 | 33 | TEST_CASE("get_entropy_avail returns 0", "[get_entropy_avail]") { 34 | unsigned int unused = 0; 35 | REQUIRE(get_entropy_avail(&unused) == 0); 36 | } 37 | --------------------------------------------------------------------------------