├── .busted ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── refactor-report.md ├── labeler.yml ├── scripts │ └── apidoc.sh └── workflows │ ├── apidoc.yml │ ├── greetings.yml │ ├── label.yml │ ├── lua-linter.yml │ ├── main.yml │ ├── shellcheck.yml │ ├── stale.yml │ └── test-suite.yml ├── .gitignore ├── .luacheckrc ├── .luacov ├── .mergify.yml ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── AutoOption.cmake ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── LICENSE_TDE ├── Makefile ├── NEWS.md ├── Packaging.cmake ├── README.md ├── SECURITY.md ├── alter_term_key.tde ├── awesome-version-internal.h ├── awesome.c ├── awesome.h ├── awesomeConfig.cmake ├── awesomerc.lua ├── banning.c ├── banning.h ├── build-utils ├── PKGBUILD ├── atoms-ext.sh ├── atoms-int.sh ├── check_for_invalid_requires.lua ├── dist.sh ├── git-version-stamp.sh ├── lgi-check.c ├── open-docs.sh └── update-release.sh ├── color.c ├── color.h ├── common ├── array.h ├── atoms.c ├── atoms.h ├── atoms.list ├── backtrace.c ├── backtrace.h ├── buffer.c ├── buffer.h ├── luaclass.c ├── luaclass.h ├── lualib.c ├── lualib.h ├── luaobject.c ├── luaobject.h ├── signal.h ├── util.c ├── util.h ├── version.c ├── version.h ├── xcursor.c ├── xcursor.h ├── xembed.c ├── xembed.h ├── xutil.c └── xutil.h ├── config.h ├── dbus.c ├── dbus.h ├── docker-compose.yml ├── docs ├── 00-authors.md ├── 01-readme.md ├── 02-contributing.md ├── 03-declarative-layout.md ├── 04-new-widgets.md ├── 05-awesomerc.md.lua ├── 06-appearance.md.lua ├── 08-client-layout-system.md ├── 09-options.md ├── 10-building-and-testing.md ├── 16-using-cairo.md ├── 90-FAQ.md ├── _parser.lua ├── build_rules_index.lua ├── common │ ├── client_rules_index.ldoc │ ├── client_theme.ldoc │ ├── cobject.ldoc │ ├── cursor_c.ldoc │ ├── fixed.ldoc │ ├── glib_timedate_format.ldoc │ ├── notification_rules_index.ldoc │ ├── object.ldoc │ ├── rule.ldoc │ ├── rules_index.ldoc │ ├── screen_rules_index.ldoc │ ├── signals.ldoc │ ├── tag_rules_index.ldoc │ ├── wibox.ldoc │ ├── wibox_constructor.ldoc │ └── widget.ldoc ├── config.ld ├── diagrams │ └── client_rules.dia ├── images │ ├── animations_tween.png │ ├── awful_widget_watch.png │ ├── button.png │ ├── card.png │ ├── checkbox.png │ ├── client_geo.svg │ ├── client_rules.svg │ ├── hidden-inputfield.png │ ├── inputfield.png │ ├── loading.png │ ├── logo.png │ ├── mouse.svg │ ├── profilebox.png │ ├── progress_bar.png │ ├── progressbar.svg │ ├── slider.png │ ├── tag_props.svg │ ├── widgetlayout1.png │ └── widgetlayout2.png ├── ldoc.css ├── ldoc.ltp ├── load_ldoc.cmake ├── plugin.md ├── sample_files.lua ├── sample_theme.lua └── widget_lists.cmake ├── draw.c ├── draw.h ├── event.c ├── event.h ├── ewmh.c ├── ewmh.h ├── generate-so.sh ├── globalconf.h ├── hooks ├── commit-msg ├── pre-commit ├── pre-push └── prepare-commit-msg ├── icons ├── awesome16.png ├── awesome32.png ├── awesome48.png └── awesome64.png ├── images └── desktop.png ├── keygrabber.c ├── keygrabber.h ├── lib ├── awful │ ├── _compat.lua │ ├── autofocus.lua │ ├── button.lua │ ├── client.lua │ ├── client │ │ ├── focus.lua │ │ ├── shape.lua │ │ └── urgent.lua │ ├── completion.lua │ ├── dbus.lua │ ├── ewmh.lua │ ├── hotkeys_popup │ │ ├── init.lua │ │ ├── keys │ │ │ ├── firefox.lua │ │ │ ├── init.lua │ │ │ ├── qutebrowser.lua │ │ │ ├── termite.lua │ │ │ ├── tmux.lua │ │ │ └── vim.lua │ │ └── widget.lua │ ├── init.lua │ ├── key.lua │ ├── keyboard.lua │ ├── keygrabber.lua │ ├── layout │ │ ├── init.lua │ │ └── suit │ │ │ ├── corner.lua │ │ │ ├── fair.lua │ │ │ ├── floating.lua │ │ │ ├── init.lua │ │ │ ├── magnifier.lua │ │ │ ├── max.lua │ │ │ ├── spiral.lua │ │ │ └── tile.lua │ ├── menu.lua │ ├── mouse │ │ ├── client.lua │ │ ├── drag_to_tag.lua │ │ ├── init.lua │ │ ├── resize.lua │ │ └── snap.lua │ ├── permissions │ │ ├── _common.lua │ │ └── init.lua │ ├── placement.lua │ ├── popup.lua │ ├── prompt.lua │ ├── remote.lua │ ├── root.lua │ ├── rules.lua │ ├── screen.lua │ ├── screen │ │ └── dpi.lua │ ├── spawn.lua │ ├── startup_notification.lua │ ├── tag.lua │ ├── titlebar.lua │ ├── tooltip.lua │ ├── util.lua │ ├── wallpaper.lua │ ├── wibar.lua │ ├── wibox.lua │ └── widget │ │ ├── button.lua │ │ ├── calendar_popup.lua │ │ ├── clienticon.lua │ │ ├── common.lua │ │ ├── graph.lua │ │ ├── init.lua │ │ ├── keyboardlayout.lua │ │ ├── launcher.lua │ │ ├── layoutbox.lua │ │ ├── layoutlist.lua │ │ ├── only_on_screen.lua │ │ ├── progressbar.lua │ │ ├── prompt.lua │ │ ├── taglist.lua │ │ ├── tasklist.lua │ │ ├── textclock.lua │ │ └── watch.lua ├── beautiful.lua ├── beautiful │ ├── gtk.lua │ ├── init.lua │ ├── theme_assets.lua │ └── xresources.lua ├── gears │ ├── cache.lua │ ├── color.lua │ ├── debug.lua │ ├── filesystem.lua │ ├── geometry.lua │ ├── init.lua │ ├── matcher.lua │ ├── math.lua │ ├── matrix.lua │ ├── object.lua │ ├── object │ │ └── properties.lua │ ├── protected_call.lua │ ├── shape.lua │ ├── sort │ │ ├── init.lua │ │ └── topological.lua │ ├── string.lua │ ├── surface.lua │ ├── table.lua │ ├── timer.lua │ └── wallpaper.lua ├── menubar │ ├── icon_theme.lua │ ├── index_theme.lua │ ├── init.lua │ ├── menu_gen.lua │ └── utils.lua ├── naughty.lua ├── naughty │ ├── action.lua │ ├── constants.lua │ ├── container │ │ ├── background.lua │ │ └── init.lua │ ├── core.lua │ ├── dbus.lua │ ├── init.lua │ ├── layout │ │ ├── box.lua │ │ ├── init.lua │ │ └── legacy.lua │ ├── list │ │ ├── actions.lua │ │ ├── init.lua │ │ └── notifications.lua │ ├── notification.lua │ └── widget │ │ ├── _default.lua │ │ ├── _markup.lua │ │ ├── icon.lua │ │ ├── init.lua │ │ ├── message.lua │ │ └── title.lua ├── ruled │ ├── client.lua │ ├── init.lua │ └── notification.lua └── wibox │ ├── container │ ├── arcchart.lua │ ├── background.lua │ ├── constraint.lua │ ├── init.lua │ ├── margin.lua │ ├── mirror.lua │ ├── place.lua │ ├── radialprogressbar.lua │ ├── rotate.lua │ ├── scroll.lua │ └── tile.lua │ ├── drawable.lua │ ├── hierarchy.lua │ ├── init.lua │ ├── layout │ ├── align.lua │ ├── constraint.lua │ ├── fixed.lua │ ├── flex.lua │ ├── grid.lua │ ├── init.lua │ ├── manual.lua │ ├── margin.lua │ ├── mirror.lua │ ├── overflow.lua │ ├── ratio.lua │ ├── rotate.lua │ ├── scroll.lua │ └── stack.lua │ └── widget │ ├── background.lua │ ├── base.lua │ ├── calendar.lua │ ├── checkbox.lua │ ├── graph.lua │ ├── imagebox.lua │ ├── init.lua │ ├── piechart.lua │ ├── progressbar.lua │ ├── separator.lua │ ├── slider.lua │ ├── systray.lua │ ├── textbox.lua │ └── textclock.lua ├── luaa.c ├── luaa.h ├── manpages ├── awesome-client.1.de.txt ├── awesome-client.1.es.txt ├── awesome-client.1.fr.txt ├── awesome-client.1.it.txt ├── awesome-client.1.ru.txt ├── awesome-client.1.txt ├── awesome.1.de.txt ├── awesome.1.es.txt ├── awesome.1.fr.txt ├── awesome.1.it.txt ├── awesome.1.ru.txt ├── awesome.1.txt ├── awesomerc.5.de.txt ├── awesomerc.5.es.txt ├── awesomerc.5.fr.txt ├── awesomerc.5.it.txt ├── awesomerc.5.ru.txt └── awesomerc.5.txt ├── mouse.c ├── mouse.h ├── mousegrabber.c ├── mousegrabber.h ├── objects ├── button.c ├── button.h ├── client.c ├── client.h ├── drawable.c ├── drawable.h ├── drawin.c ├── drawin.h ├── key.c ├── key.h ├── screen.c ├── screen.h ├── selection_acquire.c ├── selection_acquire.h ├── selection_getter.c ├── selection_getter.h ├── selection_transfer.c ├── selection_transfer.h ├── selection_watcher.c ├── selection_watcher.h ├── tag.c ├── tag.h ├── window.c └── window.h ├── options.c ├── options.h ├── plugins ├── android-connect │ ├── init.lua │ ├── logo.svg │ └── metadata.json ├── animation-widget │ ├── init.lua │ └── metadata.json ├── battery-chart │ ├── init.lua │ ├── logo.png │ ├── metadata.json │ └── readme.md ├── calendar-bare-widget │ ├── init.lua │ └── metadata.json ├── calendar-widget │ ├── init.lua │ └── metadata.json ├── chess │ ├── black_bishop.svg │ ├── black_horse.svg │ ├── black_king.svg │ ├── black_pawn.svg │ ├── black_queen.svg │ ├── black_rook.svg │ ├── init.lua │ ├── metadata.json │ ├── white_bishop.svg │ ├── white_horse.svg │ ├── white_king.svg │ ├── white_pawn.svg │ ├── white_queen.svg │ └── white_rook.svg ├── desktop-widgets │ ├── config.lua │ ├── init.lua │ ├── metadata.json │ ├── readme.md │ └── widgets.lua ├── docker-widget │ ├── icons │ │ ├── docker.svg │ │ ├── pause-btn.svg │ │ ├── pause.svg │ │ ├── play-btn.svg │ │ ├── play-btn.svg- │ │ ├── play.svg │ │ ├── square.svg │ │ ├── stop-btn.svg │ │ └── unpause-btn.svg │ ├── init.lua │ └── metadata.json ├── error-widget │ ├── init.lua │ └── metadata.json ├── github-contributions-widget │ ├── README.md │ ├── init.lua │ └── metadata.json ├── hello-world-widget │ ├── icons │ │ ├── world.dark.svg │ │ └── world.svg │ ├── init.lua │ └── metadata.json ├── hello-world │ ├── init.lua │ └── metadata.json ├── icon_button │ ├── icons │ │ ├── info.dark.svg │ │ └── info.svg │ ├── init.lua │ └── metadata.json ├── jira-widget │ ├── README.md │ ├── init.lua │ ├── jira-mark-gradient-blue.svg │ ├── json.lua │ └── metadata.json ├── keyboard │ ├── init.lua │ ├── input.lua │ ├── logo.png │ ├── metadata.json │ └── readme.md ├── prompt-example-plugin │ ├── init.lua │ └── metadata.json ├── settings-app-widget │ ├── icons │ │ ├── world.dark.svg │ │ └── world.svg │ ├── init.lua │ └── metadata.json └── snake │ ├── COPYRIGHT.md │ ├── init.lua │ ├── metadata.json │ └── snake.svg ├── profiler.sh ├── profiler ├── compare_memory.tde ├── init.lua ├── isolation_runner.lua ├── mock.lua ├── profile.lua ├── runtime.lua ├── scripts │ ├── README.md │ ├── sort-by-call-amount.sh │ └── sort-by-function-call.sh └── snapshot.tde ├── property.c ├── property.h ├── root.c ├── scripts ├── compress_svg.sh ├── hot-reload-widget.sh ├── lua-to-po.sh ├── po-to-lua.sh └── spellchecker.sh ├── selection.c ├── selection.h ├── spawn.c ├── spawn.h ├── spec ├── awful │ ├── completion_spec.lua │ ├── keyboardlayout_spec.lua │ ├── permissions_spec.lua │ ├── placement_spec.lua │ ├── prompt_spec.lua │ └── screen_spec.lua ├── beautiful │ ├── init_spec.lua │ └── tests │ │ ├── Bad_1.lua │ │ ├── Bad_2.lua │ │ ├── Bad_3.lua │ │ ├── Bad_4.lua │ │ ├── Bad_5.lua │ │ └── Good.lua ├── gears │ ├── cache_spec.lua │ ├── color_spec.lua │ ├── filesystem_spec.lua │ ├── filesystem_tests │ │ ├── a.png │ │ ├── b.jpg │ │ ├── x │ │ │ ├── Exec │ │ │ ├── NoExec │ │ │ ├── NoRead │ │ │ └── Read │ │ └── y │ │ │ ├── .file.name.ext │ │ │ ├── .file.name.ext. │ │ │ ├── .filename │ │ │ ├── .filename. │ │ │ ├── .filename.ext │ │ │ ├── file.name.ext │ │ │ ├── file.name.ext. │ │ │ ├── filename │ │ │ ├── filename. │ │ │ ├── filename.ext │ │ │ └── filename.ext. │ ├── geometry_spec.lua │ ├── matcher_spec.lua │ ├── matrix_spec.lua │ ├── object_spec.lua │ ├── protected_call_spec.lua │ ├── sort_topological_spec.lua │ ├── string_spec.lua │ └── table_spec.lua ├── menubar │ ├── home │ │ ├── .icons │ │ │ ├── awesome │ │ │ ├── icon5.png │ │ │ ├── icon6.xpm │ │ │ └── icon7.svg │ │ └── .local │ │ │ └── share │ │ │ └── icons │ │ │ ├── icon4.png │ │ │ └── icon5.png │ ├── icon_theme_spec.lua │ ├── icons │ │ ├── awesome │ │ │ ├── 16x16 │ │ │ │ └── apps │ │ │ │ │ └── awesome.png │ │ │ ├── 32x32 │ │ │ │ └── apps │ │ │ │ │ └── awesome.png │ │ │ ├── 48x48 │ │ │ │ └── apps │ │ │ │ │ └── awesome.png │ │ │ ├── 64x64 │ │ │ │ └── apps │ │ │ │ │ ├── awesome.png │ │ │ │ │ └── awesome2.png │ │ │ ├── index.theme │ │ │ └── scalable │ │ │ │ └── apps │ │ │ │ └── awesome2.png │ │ └── fallback.png │ ├── usr │ │ ├── local │ │ │ └── share │ │ │ │ └── icons │ │ │ │ ├── icon3.png │ │ │ │ ├── icon4.png │ │ │ │ └── icon5.png │ │ └── share │ │ │ ├── .filename.png │ │ │ ├── icon5.png │ │ │ ├── icon6.xpm │ │ │ ├── icon7.svg │ │ │ ├── icons │ │ │ ├── .filename.png │ │ │ ├── icon2.png │ │ │ ├── icon3.png │ │ │ ├── icon4.png │ │ │ └── icon5.png │ │ │ └── pixmaps │ │ │ ├── icon1.png │ │ │ ├── icon2.png │ │ │ ├── icon3.png │ │ │ ├── icon4.png │ │ │ └── icon5.png │ └── utils_spec.lua ├── preload.lua └── wibox │ ├── container │ ├── arcchart_spec.lua │ ├── background_spec.lua │ ├── constraint_spec.lua │ ├── margin_spec.lua │ ├── mirror_spec.lua │ ├── place_spec.lua │ ├── radialprogressbar_spec.lua │ ├── rotate_spec.lua │ └── scroll_spec.lua │ ├── hierarchy_spec.lua │ ├── layout │ ├── align_spec.lua │ ├── fixed_spec.lua │ ├── flex_spec.lua │ ├── grid_spec.lua │ ├── overflow_spec.lua │ └── stack_spec.lua │ ├── test_utils.lua │ └── widget │ ├── base_spec.lua │ ├── graph_spec.lua │ ├── imagebox_spec.lua │ ├── slider_spec.lua │ ├── systray_spec.lua │ └── textbox_spec.lua ├── spellchecker.dict ├── stack.c ├── stack.h ├── strut.c ├── strut.h ├── systray.c ├── systray.h ├── tde-settings.desktop ├── tde.desktop ├── tde ├── .luacheckrc ├── LICENSE ├── MemoryReferenceInfo.lua ├── applauncher.sh ├── application-switch.sh ├── autolock.sh ├── autorun.sh ├── collision │ ├── README.md │ ├── focus.lua │ ├── init.lua │ ├── layout.lua │ ├── max.lua │ ├── mouse.lua │ ├── resize.lua │ ├── screen.lua │ └── util.lua ├── config.lua ├── configuration │ ├── apps.lua │ ├── client │ │ ├── buttons.lua │ │ ├── init.lua │ │ ├── keys.lua │ │ └── rules.lua │ ├── compton.conf │ ├── init.lua │ ├── keys │ │ ├── global.lua │ │ ├── init.lua │ │ └── mod.lua │ ├── lxsession.lua │ ├── picom.conf │ ├── rofi │ │ ├── appmenu │ │ │ └── drun.rasi │ │ ├── search.py │ │ └── sidebar │ │ │ ├── dpi.rasi │ │ │ ├── icons │ │ │ ├── ddg.svg │ │ │ ├── google.svg │ │ │ ├── history.svg │ │ │ ├── result.svg │ │ │ └── suggestion.svg │ │ │ ├── rofi-spotlight.sh │ │ │ ├── rofi.rasi │ │ │ └── web-search.py │ └── tags │ │ ├── init.lua │ │ └── layouts │ │ └── single-maximized.lua ├── dpi.sh ├── emoji ├── emoji.sh ├── firefox-color.sh ├── global_var.lua ├── layout │ ├── bottom-panel │ │ ├── action-bar.lua │ │ └── init.lua │ ├── control-center │ │ └── init.lua │ ├── info-center │ │ └── init.lua │ ├── init.lua │ ├── left-panel │ │ ├── action-bar.lua │ │ └── init.lua │ ├── right-panel │ │ └── init.lua │ └── top-panel.lua ├── lib-tde │ ├── animations │ │ ├── init.lua │ │ └── tween.lua │ ├── click-handler.lua │ ├── config-writer.lua │ ├── daemonize.lua │ ├── datastructure │ │ ├── binary-tree.lua │ │ ├── hashmap.lua │ │ ├── linkedList.lua │ │ ├── queue.lua │ │ ├── set.lua │ │ └── stack.lua │ ├── errors.lua │ ├── extractcover.lua │ ├── file.lua │ ├── firewall.lua │ ├── function │ │ ├── application_runner.lua │ │ ├── battery.lua │ │ ├── common.lua │ │ ├── datetime.lua │ │ ├── delayed-timer.lua │ │ ├── init.lua │ │ └── svg.lua │ ├── fuzzy_find.lua │ ├── hardware-check.lua │ ├── i18n.lua │ ├── imagemagic.lua │ ├── init.lua │ ├── lib-lua │ │ ├── cjson │ │ │ └── util.lua │ │ ├── json2lua.lua │ │ ├── ltn12.lua │ │ ├── lua2json.lua │ │ ├── mime.lua │ │ ├── posix │ │ │ ├── _base.lua │ │ │ ├── _bitwise.lua │ │ │ ├── _strict.lua │ │ │ ├── compat.lua │ │ │ ├── deprecated.lua │ │ │ ├── init.lua │ │ │ ├── sys.lua │ │ │ ├── util.lua │ │ │ └── version.lua │ │ ├── qrencode.lua │ │ ├── socket.lua │ │ ├── socket │ │ │ ├── ftp.lua │ │ │ ├── headers.lua │ │ │ ├── http.lua │ │ │ ├── smtp.lua │ │ │ ├── tp.lua │ │ │ └── url.lua │ │ ├── ssl.lua │ │ ├── ssl │ │ │ └── https.lua │ │ └── strace.lua │ ├── lib-so │ │ ├── cjson.so │ │ ├── inotify.so │ │ ├── mime │ │ │ └── core.so │ │ ├── posix │ │ │ ├── ctype.so │ │ │ ├── dirent.so │ │ │ ├── errno.so │ │ │ ├── fcntl.so │ │ │ ├── fnmatch.so │ │ │ ├── glob.so │ │ │ ├── grp.so │ │ │ ├── libgen.so │ │ │ ├── poll.so │ │ │ ├── pwd.so │ │ │ ├── sched.so │ │ │ ├── signal.so │ │ │ ├── stdio.so │ │ │ ├── stdlib.so │ │ │ ├── sys │ │ │ │ ├── msg.so │ │ │ │ ├── resource.so │ │ │ │ ├── socket.so │ │ │ │ ├── stat.so │ │ │ │ ├── statvfs.so │ │ │ │ ├── time.so │ │ │ │ ├── times.so │ │ │ │ ├── utsname.so │ │ │ │ └── wait.so │ │ │ ├── syslog.so │ │ │ ├── termio.so │ │ │ ├── time.so │ │ │ ├── unistd.so │ │ │ └── utime.so │ │ ├── socket │ │ │ ├── core.so │ │ │ ├── serial.so │ │ │ └── unix.so │ │ └── ssl.so │ ├── logger.lua │ ├── luapath.lua │ ├── mappers.lua │ ├── mime.lua │ ├── mouse.lua │ ├── network.lua │ ├── plugin-loader │ │ ├── init.lua │ │ └── internal-plugins.lua │ ├── plugin.lua │ ├── qr-code.lua │ ├── sentry │ │ ├── init.lua │ │ ├── senders │ │ │ ├── luasocket.lua │ │ │ ├── ngx.lua │ │ │ ├── reference.lua │ │ │ └── test.lua │ │ └── util.lua │ ├── serialize.lua │ ├── signals.lua │ ├── sort │ │ ├── mergesort.lua │ │ ├── quicksort.lua │ │ └── radixsort.lua │ ├── sound.lua │ ├── tag_renderer.lua │ ├── translations │ │ ├── README.md │ │ ├── en.lua │ │ └── nl.lua │ ├── volume.lua │ ├── widget │ │ └── rounded.lua │ └── xrandr.lua ├── lib-widget │ ├── auto_hide.lua │ ├── button.lua │ ├── card.lua │ ├── checkbox.lua │ ├── inputfield.lua │ ├── loading.lua │ ├── profilebox.lua │ ├── progress_bar.lua │ ├── scrollbox.lua │ ├── separator.lua │ └── slider.lua ├── module │ ├── application-switch.lua │ ├── auto-start.lua │ ├── backdrop.lua │ ├── battery-notifier.lua │ ├── bootup_configuration.lua │ ├── break-timer.lua │ ├── brightness-slider-osd.lua │ ├── desktop.lua │ ├── dev-widget-update │ │ ├── init.lua │ │ ├── side-updater.lua │ │ └── updater.lua │ ├── docs.lua │ ├── exit-screen.lua │ ├── info-gather.lua │ ├── init.lua │ ├── installer.lua │ ├── lua-completion.lua │ ├── menu.lua │ ├── mousedrag.lua │ ├── network-portal-detector.lua │ ├── notifications.lua │ ├── plugin-module.lua │ ├── prompt.lua │ ├── prompt_completions │ │ ├── browser.lua │ │ ├── calculator.lua │ │ ├── documentation.lua │ │ ├── init.lua │ │ ├── open.lua │ │ ├── plugin.lua │ │ ├── ssh.lua │ │ ├── tde-scripts.lua │ │ └── update.lua │ ├── quake-terminal.lua │ ├── screen_changed.lua │ ├── screen_swipe.lua │ ├── settings.lua │ ├── state.lua │ ├── titlebar.lua │ ├── version_update_news.lua │ ├── volume-slider-osd.lua │ ├── volume_manager.lua │ └── wallpaper-changer.lua ├── parser.lua ├── pretty_print.lua ├── rc.lua ├── release.lua ├── snapshot.sh ├── sound │ ├── alarm.wav │ └── audio-pop.wav ├── svg-light-to-dark.sh ├── theme │ ├── config.lua │ ├── default-theme.lua │ ├── icons │ │ ├── arrow_down.dark.svg │ │ ├── arrow_down.svg │ │ ├── arrow_up.dark.svg │ │ ├── arrow_up.svg │ │ ├── battery-charge.svg │ │ ├── battery-discharge.svg │ │ ├── bios.dark.svg │ │ ├── bios.svg │ │ ├── bluetooth-off.dark.svg │ │ ├── bluetooth-off.svg │ │ ├── bluetooth.dark.svg │ │ ├── bluetooth.svg │ │ ├── brightness-7.dark.svg │ │ ├── brightness-7.svg │ │ ├── brush.dark.svg │ │ ├── brush.svg │ │ ├── calc.dark.svg │ │ ├── calc.svg │ │ ├── calendar.dark.svg │ │ ├── calendar.svg │ │ ├── chart-areaspline.dark.svg │ │ ├── chart-areaspline.svg │ │ ├── check.dark.svg │ │ ├── check.svg │ │ ├── clock-add.dark.svg │ │ ├── clock-add.svg │ │ ├── clock.dark.svg │ │ ├── clock.svg │ │ ├── close.dark.svg │ │ ├── close.svg │ │ ├── config.lua │ │ ├── copy.dark.svg │ │ ├── copy.svg │ │ ├── dark-light.lua │ │ ├── developer.dark.svg │ │ ├── developer.svg │ │ ├── docs.dark.svg │ │ ├── docs.svg │ │ ├── download.dark.svg │ │ ├── download.svg │ │ ├── dwindle.dark.svg │ │ ├── dwindle.svg │ │ ├── edit.dark.svg │ │ ├── edit.svg │ │ ├── effects.svg │ │ ├── firewall.dark.svg │ │ ├── firewall.svg │ │ ├── firewall_logo.svg │ │ ├── folder.dark.svg │ │ ├── folder.svg │ │ ├── forum.dark.svg │ │ ├── forum.svg │ │ ├── harddisk.dark.svg │ │ ├── harddisk.svg │ │ ├── info.dark.svg │ │ ├── info.svg │ │ ├── init.lua │ │ ├── keyboard.dark.svg │ │ ├── keyboard.svg │ │ ├── lan.dark.svg │ │ ├── lan.svg │ │ ├── lan_off.dark.svg │ │ ├── lan_off.svg │ │ ├── laptop.dark.svg │ │ ├── laptop.svg │ │ ├── layouts │ │ │ ├── arrow-expand-all.dark.png │ │ │ ├── arrow-expand-all.png │ │ │ ├── dwindle.dark.png │ │ │ ├── dwindle.png │ │ │ ├── dwindle.svg │ │ │ ├── fair.dark.png │ │ │ ├── fair.png │ │ │ ├── fairh.dark.png │ │ │ ├── fairh.png │ │ │ ├── floating.dark.png │ │ │ ├── floating.png │ │ │ ├── floating.svg │ │ │ ├── fullscreen.svg │ │ │ ├── magnifier.dark.png │ │ │ ├── magnifier.png │ │ │ ├── max.svg │ │ │ ├── tile.svg │ │ │ ├── view-quilt.dark.png │ │ │ └── view-quilt.png │ │ ├── lock.dark.svg │ │ ├── lock.svg │ │ ├── login.dark.svg │ │ ├── login.svg │ │ ├── logo.svg │ │ ├── logout.dark.svg │ │ ├── logout.svg │ │ ├── magnify.dark.svg │ │ ├── magnify.svg │ │ ├── memory.dark.svg │ │ ├── memory.svg │ │ ├── microphone.dark.svg │ │ ├── microphone.svg │ │ ├── mime.dark.svg │ │ ├── mime.svg │ │ ├── minus.black.svg │ │ ├── minus.svg │ │ ├── mouse.dark.svg │ │ ├── mouse.svg │ │ ├── network.dark.svg │ │ ├── network.svg │ │ ├── news_large.svg │ │ ├── noicon.png │ │ ├── os_large.svg │ │ ├── password.dark.svg │ │ ├── password.svg │ │ ├── plugin.dark.svg │ │ ├── plugin.svg │ │ ├── plus.dark.svg │ │ ├── plus.svg │ │ ├── power-sleep.dark.svg │ │ ├── power-sleep.svg │ │ ├── power.dark.svg │ │ ├── power.svg │ │ ├── qr_code.dark.svg │ │ ├── qr_code.svg │ │ ├── restart.dark.svg │ │ ├── restart.svg │ │ ├── settings.dark.svg │ │ ├── settings.svg │ │ ├── ship-wheel.dark.svg │ │ ├── ship-wheel.svg │ │ ├── tag-list │ │ │ ├── close-small.svg │ │ │ ├── development.svg │ │ │ ├── file-manager.svg │ │ │ ├── games.svg │ │ │ ├── graphics.svg │ │ │ ├── menu.svg │ │ │ ├── menu2.svg │ │ │ ├── multimedia.svg │ │ │ ├── occupied.png │ │ │ ├── panel.png │ │ │ ├── sandbox.svg │ │ │ ├── selected.png │ │ │ ├── social.svg │ │ │ ├── tag │ │ │ │ ├── close.png │ │ │ │ ├── code-braces.png │ │ │ │ ├── flask.png │ │ │ │ ├── folder.png │ │ │ │ ├── forum.png │ │ │ │ ├── google-chrome.png │ │ │ │ ├── google-controller.png │ │ │ │ ├── home.png │ │ │ │ └── music.png │ │ │ ├── terminal.svg │ │ │ ├── text-editor.svg │ │ │ ├── unselected.png │ │ │ ├── urgent.png │ │ │ └── web-browser.svg │ │ ├── themes │ │ │ ├── drops │ │ │ │ ├── art.svg │ │ │ │ ├── code-braces.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── google-chrome.svg │ │ │ │ ├── google-controller.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── music.svg │ │ │ │ └── terminal.svg │ │ │ ├── original │ │ │ │ ├── art.svg │ │ │ │ ├── code-braces.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── google-chrome.svg │ │ │ │ ├── google-controller.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── music.svg │ │ │ │ └── terminal.svg │ │ │ └── tos │ │ │ │ ├── art.dark.svg │ │ │ │ ├── art.svg │ │ │ │ ├── code-braces.dark.svg │ │ │ │ ├── code-braces.svg │ │ │ │ ├── code.dark.svg │ │ │ │ ├── code.svg │ │ │ │ ├── computer.dark.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── firefox.dark.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── flask.dark.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── folder.dark.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── google-controller.dark.svg │ │ │ │ ├── google-controller.svg │ │ │ │ ├── logo.dark.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── menu.dark.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── music.dark.svg │ │ │ │ ├── music.svg │ │ │ │ ├── terminal.dark.svg │ │ │ │ └── terminal.svg │ │ ├── thermometer.dark.svg │ │ ├── thermometer.svg │ │ ├── titlebar │ │ │ ├── blocks │ │ │ │ ├── close_focus.svg │ │ │ │ ├── close_focus_hover.svg │ │ │ │ ├── close_normal.svg │ │ │ │ ├── close_normal_hover.svg │ │ │ │ ├── floating_focus_active.svg │ │ │ │ ├── floating_focus_active_hover.svg │ │ │ │ ├── floating_focus_inactive.svg │ │ │ │ ├── floating_focus_inactive_hover.svg │ │ │ │ ├── floating_normal_active.svg │ │ │ │ ├── floating_normal_active_hover.svg │ │ │ │ ├── floating_normal_inactive.svg │ │ │ │ ├── floating_normal_inactive_hover.svg │ │ │ │ ├── maximized_focus_active.svg │ │ │ │ ├── maximized_focus_active_hover.svg │ │ │ │ ├── maximized_focus_inactive.svg │ │ │ │ ├── maximized_focus_inactive_hover.svg │ │ │ │ ├── maximized_normal_active.svg │ │ │ │ ├── maximized_normal_active_hover.svg │ │ │ │ ├── maximized_normal_inactive.svg │ │ │ │ ├── maximized_normal_inactive_hover.svg │ │ │ │ ├── minimize_focus.svg │ │ │ │ ├── minimize_focus_hover.svg │ │ │ │ ├── minimize_normal.svg │ │ │ │ ├── minimize_normal_hover.svg │ │ │ │ ├── ontop_focus_active.svg │ │ │ │ ├── ontop_focus_active_hover.svg │ │ │ │ ├── ontop_focus_inactive.svg │ │ │ │ ├── ontop_focus_inactive_hover.svg │ │ │ │ ├── ontop_normal_active.svg │ │ │ │ ├── ontop_normal_active_hover.svg │ │ │ │ ├── ontop_normal_inactive.svg │ │ │ │ ├── ontop_normal_inactive_hover.svg │ │ │ │ ├── sticky_focus_active.svg │ │ │ │ ├── sticky_focus_active_hover.svg │ │ │ │ ├── sticky_focus_inactive.svg │ │ │ │ ├── sticky_focus_inactive_hover.svg │ │ │ │ ├── sticky_normal_active.svg │ │ │ │ ├── sticky_normal_active_hover.svg │ │ │ │ ├── sticky_normal_inactive.svg │ │ │ │ └── sticky_normal_inactive_hover.svg │ │ │ ├── lines │ │ │ │ ├── close_focus.svg │ │ │ │ ├── close_focus_hover.svg │ │ │ │ ├── close_normal.svg │ │ │ │ ├── close_normal_hover.svg │ │ │ │ ├── floating_focus_active.svg │ │ │ │ ├── floating_focus_active_hover.svg │ │ │ │ ├── floating_focus_inactive.svg │ │ │ │ ├── floating_focus_inactive_hover.svg │ │ │ │ ├── floating_normal_active.svg │ │ │ │ ├── floating_normal_active_hover.svg │ │ │ │ ├── floating_normal_inactive.svg │ │ │ │ ├── floating_normal_inactive_hover.svg │ │ │ │ ├── maximized_focus_active.svg │ │ │ │ ├── maximized_focus_active_hover.svg │ │ │ │ ├── maximized_focus_inactive.svg │ │ │ │ ├── maximized_focus_inactive_hover.svg │ │ │ │ ├── maximized_normal_active.svg │ │ │ │ ├── maximized_normal_active_hover.svg │ │ │ │ ├── maximized_normal_inactive.svg │ │ │ │ ├── maximized_normal_inactive_hover.svg │ │ │ │ ├── minimize_focus.svg │ │ │ │ ├── minimize_focus_hover.svg │ │ │ │ ├── minimize_normal.svg │ │ │ │ ├── minimize_normal_hover.svg │ │ │ │ ├── ontop_focus_active.svg │ │ │ │ ├── ontop_focus_active_hover.svg │ │ │ │ ├── ontop_focus_inactive.svg │ │ │ │ ├── ontop_focus_inactive_hover.svg │ │ │ │ ├── ontop_normal_active.svg │ │ │ │ ├── ontop_normal_active_hover.svg │ │ │ │ ├── ontop_normal_inactive.svg │ │ │ │ ├── ontop_normal_inactive_hover.svg │ │ │ │ ├── sticky_focus_active.svg │ │ │ │ ├── sticky_focus_active_hover.svg │ │ │ │ ├── sticky_focus_inactive.svg │ │ │ │ ├── sticky_focus_inactive_hover.svg │ │ │ │ ├── sticky_normal_active.svg │ │ │ │ ├── sticky_normal_active_hover.svg │ │ │ │ ├── sticky_normal_inactive.svg │ │ │ │ └── sticky_normal_inactive_hover.svg │ │ │ ├── stoplight │ │ │ │ ├── close_focus.svg │ │ │ │ ├── close_focus_hover.svg │ │ │ │ ├── close_normal.svg │ │ │ │ ├── close_normal_hover.svg │ │ │ │ ├── floating_focus_active.svg │ │ │ │ ├── floating_focus_active_hover.svg │ │ │ │ ├── floating_focus_inactive.svg │ │ │ │ ├── floating_focus_inactive_hover.svg │ │ │ │ ├── floating_normal_active.svg │ │ │ │ ├── floating_normal_active_hover.svg │ │ │ │ ├── floating_normal_inactive.svg │ │ │ │ ├── floating_normal_inactive_hover.svg │ │ │ │ ├── maximized_focus_active.svg │ │ │ │ ├── maximized_focus_active_hover.svg │ │ │ │ ├── maximized_focus_inactive.svg │ │ │ │ ├── maximized_focus_inactive_hover.svg │ │ │ │ ├── maximized_normal_active.svg │ │ │ │ ├── maximized_normal_active_hover.svg │ │ │ │ ├── maximized_normal_inactive.svg │ │ │ │ ├── maximized_normal_inactive_hover.svg │ │ │ │ ├── minimize_focus.svg │ │ │ │ ├── minimize_focus_hover.svg │ │ │ │ ├── minimize_normal.svg │ │ │ │ ├── minimize_normal_hover.svg │ │ │ │ ├── ontop_focus_active.svg │ │ │ │ ├── ontop_focus_active_hover.svg │ │ │ │ ├── ontop_focus_inactive.svg │ │ │ │ ├── ontop_focus_inactive_hover.svg │ │ │ │ ├── ontop_normal_active.svg │ │ │ │ ├── ontop_normal_active_hover.svg │ │ │ │ ├── ontop_normal_inactive.svg │ │ │ │ ├── ontop_normal_inactive_hover.svg │ │ │ │ ├── sticky_focus_active.svg │ │ │ │ ├── sticky_focus_active_hover.svg │ │ │ │ ├── sticky_focus_inactive.svg │ │ │ │ ├── sticky_focus_inactive_hover.svg │ │ │ │ ├── sticky_normal_active.svg │ │ │ │ ├── sticky_normal_active_hover.svg │ │ │ │ ├── sticky_normal_inactive.svg │ │ │ │ └── sticky_normal_inactive_hover.svg │ │ │ └── win10 │ │ │ │ ├── close_focus.svg │ │ │ │ ├── close_normal.svg │ │ │ │ ├── close_normal_hover.svg │ │ │ │ ├── floating_focus_active.svg │ │ │ │ ├── floating_focus_active_hover.svg │ │ │ │ ├── floating_focus_inactive.svg │ │ │ │ ├── floating_focus_inactive_hover.svg │ │ │ │ ├── floating_normal_active.svg │ │ │ │ ├── floating_normal_active_hover.svg │ │ │ │ ├── floating_normal_inactive.svg │ │ │ │ ├── floating_normal_inactive_hover.svg │ │ │ │ ├── maximized_focus_active.svg │ │ │ │ ├── maximized_focus_active_hover.svg │ │ │ │ ├── maximized_focus_inactive.svg │ │ │ │ ├── maximized_focus_inactive_hover.svg │ │ │ │ ├── maximized_normal_active.svg │ │ │ │ ├── maximized_normal_active_hover.svg │ │ │ │ ├── maximized_normal_inactive.svg │ │ │ │ ├── maximized_normal_inactive_hover.svg │ │ │ │ ├── minimize_focus.svg │ │ │ │ ├── minimize_focus_hover.svg │ │ │ │ ├── minimize_normal.svg │ │ │ │ └── minimize_normal_hover.svg │ │ ├── toggled-off.svg │ │ ├── toggled-on.svg │ │ ├── trash.dark.svg │ │ ├── trash.svg │ │ ├── upload.dark.svg │ │ ├── upload.svg │ │ ├── user.dark.svg │ │ ├── user.svg │ │ ├── volume-high.dark.svg │ │ ├── volume-high.svg │ │ ├── volume-mute.dark.svg │ │ ├── volume-mute.svg │ │ ├── vpn.dark.svg │ │ ├── vpn.svg │ │ ├── warning.dark.svg │ │ ├── warning.svg │ │ ├── wifi.dark.svg │ │ ├── wifi.svg │ │ ├── wifi_off.dark.svg │ │ └── wifi_off.svg │ ├── init.lua │ ├── mat-colors.lua │ ├── surreal-theme │ │ └── init.lua │ └── wallpapers │ │ ├── AUTHORS │ │ ├── locksreen-bg.jpg │ │ ├── midnight-wallpaper.jpg │ │ ├── morning-wallpaper.jpg │ │ ├── night-wallpaper.jpg │ │ └── noon-wallpaper.jpg ├── tutorial.lua ├── updater.sh ├── weather.sh ├── widget │ ├── about │ │ ├── icons │ │ │ ├── info.dark.svg │ │ │ └── info.svg │ │ └── init.lua │ ├── battery │ │ ├── icons │ │ │ ├── battery-10.dark.svg │ │ │ ├── battery-10.svg │ │ │ ├── battery-20.dark.svg │ │ │ ├── battery-20.svg │ │ │ ├── battery-30.dark.svg │ │ │ ├── battery-30.svg │ │ │ ├── battery-40.dark.svg │ │ │ ├── battery-40.svg │ │ │ ├── battery-50.dark.svg │ │ │ ├── battery-50.svg │ │ │ ├── battery-60.dark.svg │ │ │ ├── battery-60.svg │ │ │ ├── battery-70.dark.svg │ │ │ ├── battery-70.svg │ │ │ ├── battery-80.dark.svg │ │ │ ├── battery-80.svg │ │ │ ├── battery-90.dark.svg │ │ │ ├── battery-90.svg │ │ │ ├── battery-alert-red.dark.svg │ │ │ ├── battery-alert-red.svg │ │ │ ├── battery-alert.dark.svg │ │ │ ├── battery-alert.svg │ │ │ ├── battery-charging-10.dark.svg │ │ │ ├── battery-charging-10.svg │ │ │ ├── battery-charging-100.dark.svg │ │ │ ├── battery-charging-100.svg │ │ │ ├── battery-charging-20.dark.svg │ │ │ ├── battery-charging-20.svg │ │ │ ├── battery-charging-30.dark.svg │ │ │ ├── battery-charging-30.svg │ │ │ ├── battery-charging-40.dark.svg │ │ │ ├── battery-charging-40.svg │ │ │ ├── battery-charging-50.dark.svg │ │ │ ├── battery-charging-50.svg │ │ │ ├── battery-charging-60.dark.svg │ │ │ ├── battery-charging-60.svg │ │ │ ├── battery-charging-70.dark.svg │ │ │ ├── battery-charging-70.svg │ │ │ ├── battery-charging-80.dark.svg │ │ │ ├── battery-charging-80.svg │ │ │ ├── battery-charging-90.dark.svg │ │ │ ├── battery-charging-90.svg │ │ │ ├── battery-charging-outline.dark.svg │ │ │ ├── battery-charging-outline.svg │ │ │ ├── battery-charging.dark.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-fully-charged-90.dark.svg │ │ │ ├── battery-fully-charged-90.svg │ │ │ ├── battery-fully-charged.dark.svg │ │ │ ├── battery-fully-charged.svg │ │ │ ├── battery-minus.dark.svg │ │ │ ├── battery-minus.svg │ │ │ ├── battery-negative.dark.svg │ │ │ ├── battery-negative.svg │ │ │ ├── battery-outline.dark.svg │ │ │ ├── battery-outline.svg │ │ │ ├── battery-plus.dark.svg │ │ │ ├── battery-plus.svg │ │ │ ├── battery-positive.dark.svg │ │ │ ├── battery-positive.svg │ │ │ ├── battery-standard.dark.svg │ │ │ ├── battery-standard.svg │ │ │ ├── battery-unknown.dark.svg │ │ │ ├── battery-unknown.svg │ │ │ ├── battery.dark.svg │ │ │ └── battery.svg │ │ └── init.lua │ ├── bluetooth-toggle │ │ ├── icons │ │ │ ├── bluetooth-off.svg │ │ │ ├── bluetooth.svg │ │ │ └── loading.svg │ │ └── init.lua │ ├── bluetooth │ │ ├── icons │ │ │ ├── bluetooth-connected.svg │ │ │ ├── bluetooth-off.svg │ │ │ ├── bluetooth-scanning.svg │ │ │ ├── bluetooth.svg │ │ │ └── loading.svg │ │ └── init.lua │ ├── blur-slider │ │ └── init.lua │ ├── blur-toggle │ │ ├── icons │ │ │ └── effects.svg │ │ └── init.lua │ ├── break-timer │ │ └── init.lua │ ├── brightness-slider │ │ └── init.lua │ ├── brightness │ │ ├── brightness-slider-osd.lua │ │ └── brightness-slider.lua │ ├── calculator │ │ ├── icons │ │ │ ├── kb-off.dark.svg │ │ │ ├── kb-off.svg │ │ │ ├── kb.dark.svg │ │ │ └── kb.svg │ │ └── init.lua │ ├── clock │ │ └── init.lua │ ├── control-center-switch │ │ ├── icons │ │ │ └── control-center.svg │ │ └── init.lua │ ├── control-center-toggle │ │ ├── icons │ │ │ └── control-center.svg │ │ └── init.lua │ ├── countdown │ │ └── init.lua │ ├── countdown_timer_box │ │ └── init.lua │ ├── cpu-meter │ │ └── init.lua │ ├── desktop_icon │ │ └── init.lua │ ├── dont-disturb │ │ ├── icons │ │ │ ├── dont-disturb.svg │ │ │ └── notify.svg │ │ └── init.lua │ ├── end-session │ │ └── init.lua │ ├── global-search │ │ └── init.lua │ ├── harddrive-meter │ │ └── init.lua │ ├── info-center-toggle │ │ ├── icons │ │ │ └── info-center.svg │ │ └── init.lua │ ├── keyboard │ │ ├── flags │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ct.svg │ │ │ ├── es-ga.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gt.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── xk.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ └── init.lua │ ├── material │ │ ├── clickable-container.lua │ │ ├── icon-button.lua │ │ ├── icon.lua │ │ ├── list-item.lua │ │ ├── progress_bar.lua │ │ └── slider.lua │ ├── menu │ │ └── init.lua │ ├── music │ │ ├── icons │ │ │ ├── music.dark.svg │ │ │ ├── music.svg │ │ │ ├── next.dark.svg │ │ │ ├── next.svg │ │ │ ├── pause.dark.svg │ │ │ ├── pause.svg │ │ │ ├── play.dark.svg │ │ │ ├── play.svg │ │ │ ├── prev.dark.svg │ │ │ ├── prev.svg │ │ │ ├── vinyl.dark.svg │ │ │ └── vinyl.svg │ │ ├── init.lua │ │ ├── media-buttons.lua │ │ └── music-info.lua │ ├── notif-center │ │ ├── build-notifbox │ │ │ ├── empty-notifbox.lua │ │ │ ├── init.lua │ │ │ ├── notifbox-builder.lua │ │ │ ├── notifbox-geometry.lua │ │ │ ├── notifbox-scroller.lua │ │ │ └── notifbox-ui-elements.lua │ │ ├── clear-all │ │ │ └── init.lua │ │ ├── icons │ │ │ ├── clear_all.svg │ │ │ ├── delete.svg │ │ │ ├── empty-notification.svg │ │ │ └── new-notif.svg │ │ └── init.lua │ ├── open-default-app │ │ └── init.lua │ ├── package-updater │ │ ├── icons │ │ │ ├── package-sec.svg │ │ │ ├── package-up.svg │ │ │ ├── package.dark.svg │ │ │ └── package.svg │ │ └── init.lua │ ├── ram-meter │ │ └── init.lua │ ├── sars-cov-2 │ │ ├── icons │ │ │ ├── corona.dark.svg │ │ │ └── corona.svg │ │ └── init.lua │ ├── search-apps │ │ └── init.lua │ ├── settings │ │ ├── about.lua │ │ ├── bluetooth.lua │ │ ├── calendar.lua │ │ ├── connections.lua │ │ ├── developer.lua │ │ ├── display.lua │ │ ├── dpi-handler.lua │ │ ├── firewall.lua │ │ ├── general.lua │ │ ├── init.lua │ │ ├── media.lua │ │ ├── mime.lua │ │ ├── mouse.lua │ │ ├── plugins.lua │ │ ├── size.lua │ │ ├── system.lua │ │ ├── tag.lua │ │ ├── template.lua │ │ ├── theme.lua │ │ ├── user.lua │ │ └── vpn.lua │ ├── social-media │ │ ├── icons │ │ │ ├── facebook.dark.svg │ │ │ ├── facebook.svg │ │ │ ├── instagram.dark.svg │ │ │ ├── instagram.svg │ │ │ ├── reddit.dark.svg │ │ │ ├── reddit.svg │ │ │ ├── twitter.dark.svg │ │ │ └── twitter.svg │ │ └── init.lua │ ├── tag-list.lua │ ├── task-list │ │ └── init.lua │ ├── temperature-meter │ │ └── init.lua │ ├── todo │ │ └── init.lua │ ├── tray-toggle │ │ ├── icons │ │ │ ├── left-arrow.svg │ │ │ └── right-arrow.svg │ │ └── init.lua │ ├── tutorial │ │ └── init.lua │ ├── user-profile │ │ ├── icons │ │ │ ├── user.dark.svg │ │ │ └── user.svg │ │ └── init.lua │ ├── volume-slider │ │ └── init.lua │ ├── volume │ │ ├── volume-slider-osd.lua │ │ └── volume-slider.lua │ ├── weather │ │ ├── icons │ │ │ ├── cloud_icon.dark.svg │ │ │ ├── cloud_icon.svg │ │ │ ├── dcloud_icon.dark.svg │ │ │ ├── dcloud_icon.svg │ │ │ ├── mist_icon.dark.svg │ │ │ ├── mist_icon.svg │ │ │ ├── moon_icon.dark.svg │ │ │ ├── moon_icon.svg │ │ │ ├── ncloud_icon.dark.svg │ │ │ ├── ncloud_icon.svg │ │ │ ├── rain_icon.dark.svg │ │ │ ├── rain_icon.svg │ │ │ ├── snow_icon.dark.svg │ │ │ ├── snow_icon.svg │ │ │ ├── storm_icon.dark.svg │ │ │ ├── storm_icon.svg │ │ │ ├── sun_icon.dark.svg │ │ │ ├── sun_icon.svg │ │ │ ├── whatever_icon.dark.svg │ │ │ └── whatever_icon.svg │ │ ├── init.lua │ │ └── weather-update.lua │ ├── wifi │ │ ├── icons │ │ │ ├── wifi-off.dark.svg │ │ │ ├── wifi-off.svg │ │ │ ├── wifi-strength-1-alert.dark.svg │ │ │ ├── wifi-strength-1-alert.svg │ │ │ ├── wifi-strength-1-lock.dark.svg │ │ │ ├── wifi-strength-1-lock.svg │ │ │ ├── wifi-strength-1.dark.svg │ │ │ ├── wifi-strength-1.svg │ │ │ ├── wifi-strength-2-alert.dark.svg │ │ │ ├── wifi-strength-2-alert.svg │ │ │ ├── wifi-strength-2-lock.dark.svg │ │ │ ├── wifi-strength-2-lock.svg │ │ │ ├── wifi-strength-2.dark.svg │ │ │ ├── wifi-strength-2.svg │ │ │ ├── wifi-strength-3-alert.dark.svg │ │ │ ├── wifi-strength-3-alert.svg │ │ │ ├── wifi-strength-3-lock.dark.svg │ │ │ ├── wifi-strength-3-lock.svg │ │ │ ├── wifi-strength-3.dark.svg │ │ │ ├── wifi-strength-3.svg │ │ │ ├── wifi-strength-4-alert.dark.svg │ │ │ ├── wifi-strength-4-alert.svg │ │ │ ├── wifi-strength-4-lock.dark.svg │ │ │ ├── wifi-strength-4-lock.svg │ │ │ ├── wifi-strength-4.dark.svg │ │ │ ├── wifi-strength-4.svg │ │ │ ├── wifi-strength-alert-outline.dark.svg │ │ │ ├── wifi-strength-alert-outline.svg │ │ │ ├── wifi-strength-lock-outline.dark.svg │ │ │ ├── wifi-strength-lock-outline.svg │ │ │ ├── wifi-strength-off-outline.dark.svg │ │ │ ├── wifi-strength-off-outline.svg │ │ │ ├── wifi-strength-off.dark.svg │ │ │ ├── wifi-strength-off.svg │ │ │ ├── wifi-strength-outline.dark.svg │ │ │ ├── wifi-strength-outline.svg │ │ │ ├── wifi.dark.svg │ │ │ └── wifi.svg │ │ └── init.lua │ └── xdg-folders │ │ ├── documents.lua │ │ ├── downloads.lua │ │ ├── home.lua │ │ ├── icons │ │ ├── folder-documents.dark.svg │ │ ├── folder-documents.svg │ │ ├── folder-download.dark.svg │ │ ├── folder-download.svg │ │ ├── folder-pictures.dark.svg │ │ ├── folder-pictures.svg │ │ ├── folder-videos.dark.svg │ │ ├── folder-videos.svg │ │ ├── no.dark.svg │ │ ├── no.svg │ │ ├── open-folder.dark.svg │ │ ├── open-folder.svg │ │ ├── user-home.dark.svg │ │ ├── user-home.svg │ │ ├── user-trash-empty.dark.svg │ │ ├── user-trash-empty.svg │ │ ├── user-trash-full.dark.svg │ │ ├── user-trash-full.svg │ │ ├── yes.dark.svg │ │ └── yes.svg │ │ ├── init.lua │ │ ├── pictures.lua │ │ ├── trash.lua │ │ └── videos.lua └── wifi.sh ├── test-runner.sh ├── tests ├── _client.lua ├── _multi_screen.lua ├── _runner.lua ├── _wibox_helper.lua ├── examples │ ├── CMakeLists.txt │ ├── awful │ │ ├── client │ │ │ ├── border_color.lua │ │ │ ├── border_width.lua │ │ │ ├── opacity1.lua │ │ │ ├── shape1.lua │ │ │ ├── skip_tasklist1.lua │ │ │ └── urgent1.lua │ │ ├── mouse │ │ │ └── coords.lua │ │ ├── notification │ │ │ ├── bg.lua │ │ │ ├── border_color.lua │ │ │ ├── box_corner.lua │ │ │ ├── box_corner.output.txt │ │ │ ├── corner.lua │ │ │ ├── fg.lua │ │ │ ├── geometry.lua │ │ │ ├── margin.lua │ │ │ ├── notificationlist │ │ │ │ └── bottombar.lua │ │ │ └── shape.lua │ │ ├── placement │ │ │ ├── aero_snap.lua │ │ │ ├── align.lua │ │ │ ├── bottom.lua │ │ │ ├── bottom_left.lua │ │ │ ├── bottom_right.lua │ │ │ ├── center_horizontal.lua │ │ │ ├── center_vertical.lua │ │ │ ├── centered.lua │ │ │ ├── closest_mouse.lua │ │ │ ├── compose.lua │ │ │ ├── compose2.lua │ │ │ ├── left.lua │ │ │ ├── maximize.lua │ │ │ ├── maximize_horizontally.lua │ │ │ ├── maximize_vertically.lua │ │ │ ├── next_to.lua │ │ │ ├── next_to_mouse.lua │ │ │ ├── no_offscreen.lua │ │ │ ├── no_overlap.lua │ │ │ ├── resize_to_mouse.lua │ │ │ ├── right.lua │ │ │ ├── skip_fullscreen-no_fullscreen.lua │ │ │ ├── skip_fullscreen.lua │ │ │ ├── stretch.lua │ │ │ ├── stretch_down.lua │ │ │ ├── stretch_left.lua │ │ │ ├── stretch_right.lua │ │ │ ├── stretch_up.lua │ │ │ ├── top.lua │ │ │ ├── top_left.lua │ │ │ ├── top_right.lua │ │ │ └── under_mouse.lua │ │ ├── popup │ │ │ ├── alttab.lua │ │ │ ├── anchors.lua │ │ │ ├── defaultconfig.lua │ │ │ ├── position1.lua │ │ │ ├── position2.lua │ │ │ ├── position3.lua │ │ │ ├── simple.lua │ │ │ └── wiboxtypes.lua │ │ ├── screen │ │ │ ├── split1.lua │ │ │ └── split2.lua │ │ ├── tag │ │ │ ├── module_default_layouts.lua │ │ │ └── request_default_layouts.lua │ │ ├── template.lua │ │ ├── titlebar │ │ │ ├── constructor.lua │ │ │ ├── default.lua │ │ │ └── defaulttitlebar.lua │ │ ├── tooltip │ │ │ ├── align.lua │ │ │ ├── align2.lua │ │ │ ├── border_color.lua │ │ │ ├── border_width.lua │ │ │ ├── gaps.lua │ │ │ ├── margins.lua │ │ │ ├── margins_leftright.lua │ │ │ ├── margins_topbottom.lua │ │ │ ├── mode.lua │ │ │ ├── mode2.lua │ │ │ ├── mouse.lua │ │ │ ├── preferred_alignment.lua │ │ │ ├── preferred_alignment2.lua │ │ │ ├── preferred_alignment3.lua │ │ │ ├── preferred_positions.lua │ │ │ ├── shape.lua │ │ │ ├── textclock.lua │ │ │ └── textclock2.lua │ │ ├── wallpaper │ │ │ ├── add_screen1.lua │ │ │ ├── add_screen2.lua │ │ │ ├── add_screen3.lua │ │ │ ├── corner1.lua │ │ │ ├── dpi1.lua │ │ │ ├── gradient1.lua │ │ │ ├── gradient2.lua │ │ │ ├── mazimized1.lua │ │ │ ├── mazimized2.lua │ │ │ ├── mazimized3.lua │ │ │ ├── padding1.lua │ │ │ ├── panning_custom.lua │ │ │ ├── panning_inner.lua │ │ │ ├── panning_inner_horizontal.lua │ │ │ ├── panning_inner_vertical.lua │ │ │ ├── panning_outer.lua │ │ │ ├── remove_screen1.lua │ │ │ ├── remove_screen2.lua │ │ │ ├── screens1.lua │ │ │ ├── slideshow1.lua │ │ │ ├── svg.lua │ │ │ ├── tiled1.lua │ │ │ ├── tiled2.lua │ │ │ ├── widget1.lua │ │ │ ├── widget2.lua │ │ │ └── workarea1.lua │ │ ├── wibar │ │ │ ├── align.lua │ │ │ ├── default.lua │ │ │ ├── defaultwibar.lua │ │ │ ├── left.lua │ │ │ ├── margins.lua │ │ │ ├── position.lua │ │ │ ├── position2.lua │ │ │ └── stretch.lua │ │ └── widget │ │ │ ├── calendar_popup │ │ │ ├── cell_properties.lua │ │ │ └── default.lua │ │ │ ├── launcher │ │ │ └── default.lua │ │ │ ├── layoutbox │ │ │ └── default.lua │ │ │ └── layoutlist │ │ │ ├── bar.lua │ │ │ ├── default.lua │ │ │ ├── popup.lua │ │ │ └── wibar.lua │ ├── gears │ │ └── shape │ │ │ ├── arc.lua │ │ │ ├── arrow.lua │ │ │ ├── circle.lua │ │ │ ├── cross.lua │ │ │ ├── hexagon.lua │ │ │ ├── infobubble.lua │ │ │ ├── isosceles_triangle.lua │ │ │ ├── losange.lua │ │ │ ├── octogon.lua │ │ │ ├── parallelogram.lua │ │ │ ├── partial_squircle.lua │ │ │ ├── partially_rounded_rect.lua │ │ │ ├── pie.lua │ │ │ ├── powerline.lua │ │ │ ├── radial_progress.lua │ │ │ ├── rectangle.lua │ │ │ ├── rectangular_tag.lua │ │ │ ├── rectbubble.lua │ │ │ ├── rounded_bar.lua │ │ │ ├── rounded_rect.lua │ │ │ ├── squircle.lua │ │ │ ├── star.lua │ │ │ └── template.lua │ ├── naughty │ │ ├── actions.lua │ │ ├── colors.lua │ │ ├── helloworld.lua │ │ ├── shape.lua │ │ └── template.lua │ ├── runner.sh │ ├── screen │ │ ├── client_snap.lua │ │ ├── gap_single_client_false.lua │ │ ├── gap_single_client_true.lua │ │ ├── gaps.lua │ │ ├── gaps2.lua │ │ ├── geometry.lua │ │ ├── mfpol.lua │ │ ├── mfpol2.lua │ │ ├── mwfact.lua │ │ ├── mwfact2.lua │ │ ├── padding.lua │ │ ├── struts.lua │ │ ├── taglayout.lua │ │ ├── template.lua │ │ ├── tiled_clients.lua │ │ ├── tiling_area.lua │ │ ├── wfact1.lua │ │ ├── wfact2.lua │ │ ├── wfact3.lua │ │ ├── wfact4.lua │ │ ├── wibar_workarea.lua │ │ └── workarea.lua │ ├── sequences │ │ ├── client │ │ │ ├── activate1.lua │ │ │ ├── cycle1.lua │ │ │ ├── cycle1.output.txt │ │ │ ├── floating1.lua │ │ │ ├── focus_bydirection1.lua │ │ │ ├── focus_bydirection2.lua │ │ │ ├── focus_byidx1.lua │ │ │ ├── fullscreen.lua │ │ │ ├── geometry1.lua │ │ │ ├── height1.lua │ │ │ ├── jump_to1.lua │ │ │ ├── jump_to_urgent1.lua │ │ │ ├── kill1.lua │ │ │ ├── maximized.lua │ │ │ ├── maximized_horizontal.lua │ │ │ ├── maximized_vertical.lua │ │ │ ├── minimize1.lua │ │ │ ├── move_to_screen1.lua │ │ │ ├── move_to_tag1.lua │ │ │ ├── relative_move1.lua │ │ │ ├── restore1.lua │ │ │ ├── screen.lua │ │ │ ├── sticky.lua │ │ │ ├── swap1.lua │ │ │ ├── swap_bydirection1.lua │ │ │ ├── swap_bydirection2.lua │ │ │ ├── swap_byidx1.lua │ │ │ ├── tags1.lua │ │ │ ├── to_primary.lua │ │ │ ├── to_secondary.lua │ │ │ ├── to_selected_tags1.lua │ │ │ ├── toggle_tag1.lua │ │ │ ├── width1.lua │ │ │ ├── x1.lua │ │ │ └── y1.lua │ │ ├── client_rules │ │ │ ├── floating.lua │ │ │ ├── maximized.lua │ │ │ ├── new_tag.lua │ │ │ ├── placement.lua │ │ │ ├── screens.lua │ │ │ ├── switch_to_tags.lua │ │ │ └── tags.lua │ │ ├── screen │ │ │ ├── fake_remove.lua │ │ │ ├── fake_resize.lua │ │ │ └── swap.lua │ │ ├── tag │ │ │ ├── clear.lua │ │ │ ├── column_count.lua │ │ │ ├── default_config.lua │ │ │ ├── delete.lua │ │ │ ├── index.lua │ │ │ ├── master_count.lua │ │ │ ├── name.lua │ │ │ ├── new_with_layouts.lua │ │ │ ├── selected.lua │ │ │ ├── swap.lua │ │ │ ├── view_only.lua │ │ │ ├── viewidx.lua │ │ │ ├── viewnext.lua │ │ │ ├── viewnone.lua │ │ │ ├── viewprev.lua │ │ │ └── volatile.lua │ │ └── template.lua │ ├── shims │ │ ├── _common_template.lua │ │ ├── _date.lua │ │ ├── _default_look.lua │ │ ├── awesome.lua │ │ ├── beautiful.lua │ │ ├── beautiful │ │ │ └── xresources.lua │ │ ├── button.lua │ │ ├── client.lua │ │ ├── dbus.lua │ │ ├── drawin.lua │ │ ├── key.lua │ │ ├── keygrabber.lua │ │ ├── mouse.lua │ │ ├── mousegrabber.lua │ │ ├── root.lua │ │ ├── screen.lua │ │ └── tag.lua │ ├── text │ │ ├── awful │ │ │ ├── key │ │ │ │ └── constructor │ │ │ ├── keygrabber │ │ │ │ ├── allowed_keys.lua │ │ │ │ ├── alttab.lua │ │ │ │ ├── autostart.lua │ │ │ │ ├── release_key.lua │ │ │ │ ├── release_keys.lua │ │ │ │ ├── root_keybindings.lua │ │ │ │ ├── root_keybindings.output.txt │ │ │ │ ├── timeout.lua │ │ │ │ └── vimode.lua │ │ │ ├── layout │ │ │ │ ├── remove.lua │ │ │ │ └── remove.output.txt │ │ │ └── wallpaper │ │ │ │ └── multi_screen.lua │ │ ├── gears │ │ │ ├── cache │ │ │ │ ├── another_cache.lua │ │ │ │ ├── another_cache.output.txt │ │ │ │ ├── cache.lua │ │ │ │ └── cache.output.txt │ │ │ ├── matcher │ │ │ │ ├── default.lua │ │ │ │ ├── properties.lua │ │ │ │ ├── properties.txt │ │ │ │ └── types.lua │ │ │ ├── object │ │ │ │ ├── properties.lua │ │ │ │ ├── properties.output.txt │ │ │ │ ├── signal.lua │ │ │ │ └── signal.output.txt │ │ │ ├── sort │ │ │ │ ├── topological.lua │ │ │ │ └── topological.output.txt │ │ │ ├── string │ │ │ │ ├── endswith.lua │ │ │ │ ├── endswith.output.txt │ │ │ │ ├── linecount.lua │ │ │ │ ├── linecount.output.txt │ │ │ │ ├── linewrap.lua │ │ │ │ ├── linewrap.output.txt │ │ │ │ ├── quote_pattern.lua │ │ │ │ ├── quote_pattern.output.txt │ │ │ │ ├── startswith.lua │ │ │ │ └── startswith.output.txt │ │ │ └── table │ │ │ │ ├── count_keys.lua │ │ │ │ └── cycle_value.lua │ │ ├── root │ │ │ ├── fake_click.lua │ │ │ └── fake_string.lua │ │ └── template.lua │ ├── uml │ │ ├── nav_tables │ │ │ ├── client.lua │ │ │ ├── screen.lua │ │ │ └── tag.lua │ │ └── template.lua │ └── wibox │ │ ├── awidget │ │ ├── defaults │ │ │ ├── button.lua │ │ │ ├── clienticon.lua │ │ │ ├── keyboardlayout.lua │ │ │ ├── launcher.lua │ │ │ ├── layoutbox.lua │ │ │ ├── layoutlist.lua │ │ │ ├── prompt.lua │ │ │ ├── taglist.lua │ │ │ ├── tasklist.lua │ │ │ └── watch.lua │ │ ├── prompt │ │ │ ├── highlight.lua │ │ │ ├── hooks.lua │ │ │ ├── keypress.lua │ │ │ ├── simple.lua │ │ │ └── vilike.lua │ │ ├── taglist │ │ │ ├── icon.lua │ │ │ └── indexed.lua │ │ └── tasklist │ │ │ ├── rounded.lua │ │ │ └── windows10.lua │ │ ├── container │ │ ├── arcchart │ │ │ ├── bg.lua │ │ │ ├── border_width.lua │ │ │ ├── paddings.lua │ │ │ ├── rounded_edge.lua │ │ │ ├── start_angle.lua │ │ │ ├── thickness.lua │ │ │ └── value.lua │ │ ├── background │ │ │ ├── bg.lua │ │ │ ├── fg.lua │ │ │ └── shape.lua │ │ ├── defaults │ │ │ ├── arcchart.lua │ │ │ ├── background.lua │ │ │ ├── constraint.lua │ │ │ ├── margin.lua │ │ │ ├── mirror.lua │ │ │ ├── only_on_screen.lua │ │ │ ├── place.lua │ │ │ ├── radialprogressbar.lua │ │ │ ├── rotate.lua │ │ │ ├── scroll.lua │ │ │ ├── template.lua │ │ │ └── tile.lua │ │ ├── place │ │ │ ├── content_fill_horizontal.lua │ │ │ ├── content_fill_vertical.lua │ │ │ ├── halign.lua │ │ │ └── valign.lua │ │ ├── radialprogressbar │ │ │ ├── border_color.lua │ │ │ ├── border_width.lua │ │ │ ├── color.lua │ │ │ ├── padding.lua │ │ │ └── value.lua │ │ ├── rotate │ │ │ └── angle.lua │ │ └── tile │ │ │ ├── horizontal_crop.lua │ │ │ ├── horizontal_spacing.lua │ │ │ ├── tiled.lua │ │ │ ├── vertical_crop.lua │ │ │ └── vertical_spacing.lua │ │ ├── layout │ │ ├── defaults │ │ │ ├── align.lua │ │ │ ├── fixed.lua │ │ │ ├── flex.lua │ │ │ ├── grid.lua │ │ │ ├── manual.lua │ │ │ ├── overflow.lua │ │ │ ├── ratio.lua │ │ │ └── stack.lua │ │ ├── fixed │ │ │ ├── spacing.lua │ │ │ └── spacing_widget.lua │ │ ├── flex │ │ │ ├── spacing.lua │ │ │ └── spacing_widget.lua │ │ ├── grid │ │ │ ├── add.lua │ │ │ ├── expand.lua │ │ │ ├── extend_column.lua │ │ │ ├── imperative.lua │ │ │ ├── insert_column.lua │ │ │ ├── min_size.lua │ │ │ ├── orientation.lua │ │ │ ├── remove.lua │ │ │ ├── remove_column.lua │ │ │ ├── spacing.lua │ │ │ └── superpose.lua │ │ ├── manual │ │ │ ├── add_at.lua │ │ │ └── move_widget.lua │ │ ├── overflow │ │ │ ├── fill_space.lua │ │ │ ├── scrollbar_position.lua │ │ │ ├── scrollbar_widget.lua │ │ │ └── scrollbar_width.lua │ │ ├── ratio │ │ │ ├── adjust_ratio.lua │ │ │ ├── inc_ratio.lua │ │ │ ├── spacing.lua │ │ │ ├── spacing_widget.lua │ │ │ └── strategy.lua │ │ ├── stack │ │ │ ├── offset.lua │ │ │ └── spacing.lua │ │ └── template.lua │ │ ├── logo │ │ ├── logo.lua │ │ └── logo_and_name.lua │ │ ├── nwidget │ │ ├── actionlist │ │ │ ├── fancy.lua │ │ │ ├── fancy_icons.lua │ │ │ ├── icon_only.lua │ │ │ ├── simple.lua │ │ │ └── style.lua │ │ ├── default.lua │ │ ├── icon │ │ │ ├── simple.lua │ │ │ └── strategy.lua │ │ ├── message │ │ │ └── simple.lua │ │ ├── rules │ │ │ ├── add_actions.lua │ │ │ ├── has_class.lua │ │ │ ├── has_focus.lua │ │ │ ├── has_instance.lua │ │ │ ├── urgency.lua │ │ │ └── widget_template.lua │ │ └── title │ │ │ └── simple.lua │ │ ├── template.lua │ │ └── widget │ │ ├── calendar │ │ ├── flex_height.lua │ │ ├── fn_embed_cell.lua │ │ ├── font.lua │ │ ├── long_weekdays.lua │ │ ├── month.lua │ │ ├── start_sunday.lua │ │ ├── week_numbers.lua │ │ └── year.lua │ │ ├── checkbox │ │ ├── bg.lua │ │ ├── check_shape.lua │ │ ├── custom.lua │ │ └── shape.lua │ │ ├── declarative-pattern │ │ ├── imagebox.lua │ │ └── textclock.lua │ │ ├── defaults │ │ ├── calendar.lua │ │ ├── checkbox.lua │ │ ├── graph.lua │ │ ├── imagebox.lua │ │ ├── piechart.lua │ │ ├── progressbar.lua │ │ ├── separator.lua │ │ ├── slider.lua │ │ ├── textbox.lua │ │ └── textclock.lua │ │ ├── graph │ │ ├── background_color.lua │ │ ├── baseline_value.lua │ │ ├── border_color.lua │ │ ├── border_width.lua │ │ ├── clamp_bars.lua │ │ ├── code_coverage.lua │ │ ├── color.lua │ │ ├── max_value.lua │ │ ├── min_value.lua │ │ ├── nan_color.lua │ │ ├── negative_gallery.lua │ │ ├── negative_sine.lua │ │ ├── normal_vs_stacked.lua │ │ ├── scale1.lua │ │ ├── scale_stacked.lua │ │ ├── stacked.lua │ │ ├── stacked_group_disable.lua │ │ ├── stacked_nan.lua │ │ ├── stacked_step_options.lua │ │ ├── step.lua │ │ ├── step_shape.lua │ │ ├── step_spacing.lua │ │ └── subpixel.lua │ │ ├── imagebox │ │ ├── clip_shape.lua │ │ ├── downscale.lua │ │ ├── dpi.lua │ │ ├── halign.lua │ │ ├── horizontal_fit_policy.lua │ │ ├── max_scaling_factor.lua │ │ ├── resize.lua │ │ ├── scaling_quality.lua │ │ ├── stylesheet.lua │ │ ├── upscale.lua │ │ ├── valign.lua │ │ └── vertical_fit_policy.lua │ │ ├── piechart │ │ ├── border_color.lua │ │ ├── border_width.lua │ │ └── label.lua │ │ ├── progressbar │ │ ├── background_color.lua │ │ ├── bar_border_color.lua │ │ ├── bar_border_width.lua │ │ ├── bar_shape.lua │ │ ├── border_color.lua │ │ ├── border_width.lua │ │ ├── clip.lua │ │ ├── color.lua │ │ ├── encapsulation.lua │ │ ├── grad1.lua │ │ ├── grad2.lua │ │ ├── margins1.lua │ │ ├── margins2.lua │ │ ├── max_value.lua │ │ ├── paddings1.lua │ │ ├── paddings2.lua │ │ ├── shape.lua │ │ ├── text.lua │ │ ├── ticks.lua │ │ ├── ticks_gap.lua │ │ ├── ticks_size.lua │ │ ├── ticks_size2.lua │ │ ├── value.lua │ │ └── vertical.lua │ │ ├── separator │ │ ├── border_color.lua │ │ ├── orientation.lua │ │ └── shape.lua │ │ ├── slider │ │ ├── bar_active_color.lua │ │ ├── bar_border.lua │ │ ├── bar_color.lua │ │ ├── bar_height.lua │ │ ├── bar_margins.lua │ │ ├── bar_shape.lua │ │ ├── handle_border.lua │ │ ├── handle_color.lua │ │ ├── handle_margins.lua │ │ ├── handle_shape.lua │ │ ├── handle_width.lua │ │ └── value.lua │ │ └── textbox │ │ ├── align1.lua │ │ ├── ellipsize.lua │ │ ├── font1.lua │ │ ├── font2.lua │ │ ├── markup1.lua │ │ ├── markup2.lua │ │ ├── text1.lua │ │ ├── text2.lua │ │ ├── valign1.lua │ │ └── wrap1.lua ├── run.sh ├── tde │ ├── IT │ │ ├── functions.lua │ │ ├── init.lua │ │ ├── layout │ │ │ ├── init.lua │ │ │ └── rc │ │ │ │ ├── action-menu.lua │ │ │ │ ├── bottom-bar.lua │ │ │ │ ├── compositor.lua │ │ │ │ ├── floating.lua │ │ │ │ ├── notification-center.lua │ │ │ │ ├── notifications.lua │ │ │ │ ├── settings-app.lua │ │ │ │ ├── tags-switch.lua │ │ │ │ ├── tiling.lua │ │ │ │ └── toppanel.lua │ │ └── widgets │ │ │ └── init.lua │ ├── check-important-modules.lua │ ├── config.lua │ ├── configuration │ │ ├── apps.lua │ │ ├── init.lua │ │ └── mod-key.lua │ ├── globals.lua │ ├── lib-tde │ │ ├── datastructure │ │ │ ├── binary-tree.lua │ │ │ ├── hashmap.lua │ │ │ ├── init.lua │ │ │ ├── linked-list.lua │ │ │ ├── queue.lua │ │ │ ├── set.lua │ │ │ └── stack.lua │ │ ├── files.lua │ │ ├── function │ │ │ ├── application_runner.lua │ │ │ ├── battery.lua │ │ │ ├── common.lua │ │ │ ├── datetime.lua │ │ │ └── init.lua │ │ ├── hardware-check.lua │ │ ├── i18n.lua │ │ ├── imagemagic.lua │ │ ├── init.lua │ │ ├── logger.lua │ │ ├── luapath.lua │ │ ├── mappers.lua │ │ ├── mouse.lua │ │ ├── network.lua │ │ ├── plugin-loader.lua │ │ ├── serialize.lua │ │ ├── signals.lua │ │ ├── sorting │ │ │ ├── init.lua │ │ │ └── quicksort.lua │ │ ├── sound.lua │ │ └── volume.lua │ ├── luaunit.lua │ ├── mock │ │ ├── awful.lua │ │ ├── beautiful.lua │ │ ├── beautiful │ │ │ └── gtk.lua │ │ ├── gears.lua │ │ ├── gears │ │ │ └── filesystem.lua │ │ ├── menubar.lua │ │ ├── naughty.lua │ │ ├── parser.lua │ │ ├── socket.lua │ │ └── widget │ │ │ └── mock-plugin.lua │ ├── modules │ │ ├── init.lua │ │ └── lua-completion.lua │ ├── parser.lua │ ├── profile-scripts │ │ ├── binary-tree.lua │ │ ├── bluetooth-status.lua │ │ ├── colorized_output.lua │ │ ├── cpu-value.lua │ │ ├── dialogs.lua │ │ ├── file.lua │ │ ├── full-run.lua │ │ ├── hard-drive-value.lua │ │ ├── hardware.lua │ │ ├── hashmap.lua │ │ ├── i18n.lua │ │ ├── ipaddr.lua │ │ ├── logger.lua │ │ ├── mouse.lua │ │ ├── network-value.lua │ │ ├── network_list.lua │ │ ├── queue.lua │ │ ├── quicksort.lua │ │ ├── ram-value.lua │ │ ├── set.lua │ │ ├── sieve.lua │ │ ├── stack.lua │ │ ├── string.lua │ │ ├── temp-value.lua │ │ ├── volume.lua │ │ ├── wifi.lua │ │ └── xrandr_resolution_list.lua │ ├── runner-it.lua │ ├── runner.lua │ └── theme │ │ ├── dark-light.lua │ │ ├── default-theme.lua │ │ ├── icons.lua │ │ ├── init.lua │ │ └── material.lua ├── test-awesomerc.lua ├── test-awful-client.lua ├── test-awful-layout.lua ├── test-awful-mouse.lua ├── test-awful-placement.lua ├── test-awful-rules.lua ├── test-awful-screen.lua ├── test-awful-tag.lua ├── test-awful-widget-button.lua ├── test-awful-widget-calendar_popup.lua ├── test-awful-widget-only_on_screen.lua ├── test-awful-widget-watch.lua ├── test-benchmark.lua ├── test-client-borders.lua ├── test-client-shape.lua ├── test-client-swap.lua ├── test-current-desktop.lua ├── test-dbus-error.lua ├── test-dpi.lua ├── test-drawable-bgimage.lua ├── test-focus.lua ├── test-geometry.lua ├── test-gravity.c ├── test-gravity.lua ├── test-input-binding.lua ├── test-keyboard-layout-changes.lua ├── test-keycodes.lua ├── test-keygrabber.lua ├── test-leak-client.lua ├── test-leaks.lua ├── test-maximize.lua ├── test-menubar.lua ├── test-miss-handlers.lua ├── test-naughty-legacy.lua ├── test-naughty-preset.lua ├── test-naughty-screen.lua ├── test-naughty-suspended.lua ├── test-resize.lua ├── test-screen-changes.lua ├── test-screenshot.lua ├── test-selection-getter.lua ├── test-selection-transfer.lua ├── test-selection-watcher.lua ├── test-signal.lua ├── test-spawn-snid.lua ├── test-spawn.lua ├── test-struts.lua ├── test-systray.c ├── test-systray.lua ├── test-tag-gap-single-client.lua ├── test-titlebar.lua ├── test-tooltip.lua ├── test-urgent.lua ├── test-use-after-gc.lua ├── test-wallpaper.lua ├── test-wibox-shape.lua └── themes │ ├── run.sh │ └── tests.lua ├── themes ├── default │ ├── README │ ├── background.jpg │ ├── layouts │ │ ├── cornerne.png │ │ ├── cornernew.png │ │ ├── cornernw.png │ │ ├── cornernww.png │ │ ├── cornerse.png │ │ ├── cornersew.png │ │ ├── cornersw.png │ │ ├── cornersww.png │ │ ├── dwindle.png │ │ ├── dwindlew.png │ │ ├── fairh.png │ │ ├── fairhw.png │ │ ├── fairv.png │ │ ├── fairvw.png │ │ ├── floating.png │ │ ├── floatingw.png │ │ ├── fullscreen.png │ │ ├── fullscreenw.png │ │ ├── magnifier.png │ │ ├── magnifierw.png │ │ ├── max.png │ │ ├── maxw.png │ │ ├── spiral.png │ │ ├── spiralw.png │ │ ├── tile.png │ │ ├── tilebottom.png │ │ ├── tilebottomw.png │ │ ├── tileleft.png │ │ ├── tileleftw.png │ │ ├── tiletop.png │ │ ├── tiletopw.png │ │ └── tilew.png │ ├── logo.svg │ ├── submenu.png │ ├── taglist │ │ ├── squarefw.png │ │ └── squarew.png │ ├── theme.lua │ └── titlebar │ │ ├── close_focus.png │ │ ├── close_normal.png │ │ ├── floating_focus_active.png │ │ ├── floating_focus_inactive.png │ │ ├── floating_normal_active.png │ │ ├── floating_normal_inactive.png │ │ ├── maximized_focus_active.png │ │ ├── maximized_focus_inactive.png │ │ ├── maximized_normal_active.png │ │ ├── maximized_normal_inactive.png │ │ ├── minimize_focus.png │ │ ├── minimize_normal.png │ │ ├── ontop_focus_active.png │ │ ├── ontop_focus_inactive.png │ │ ├── ontop_normal_active.png │ │ ├── ontop_normal_inactive.png │ │ ├── sticky_focus_active.png │ │ ├── sticky_focus_inactive.png │ │ ├── sticky_normal_active.png │ │ └── sticky_normal_inactive.png ├── gtk │ └── theme.lua ├── sky │ ├── awesome-icon.png │ ├── layouts │ │ ├── cornerne.png │ │ ├── cornernw.png │ │ ├── cornerse.png │ │ ├── cornersw.png │ │ ├── dwindle.png │ │ ├── fairh.png │ │ ├── fairv.png │ │ ├── floating.png │ │ ├── fullscreen.png │ │ ├── magnifier.png │ │ ├── max.png │ │ ├── spiral.png │ │ ├── tile.png │ │ ├── tilebottom.png │ │ ├── tileleft.png │ │ └── tiletop.png │ ├── sky-background.png │ └── theme.lua ├── xresources │ ├── assets.lua │ ├── theme.lua │ └── wallpaper.svg └── zenburn │ ├── awesome-icon.png │ ├── layouts │ ├── cornerne.png │ ├── cornernw.png │ ├── cornerse.png │ ├── cornersw.png │ ├── dwindle.png │ ├── fairh.png │ ├── fairv.png │ ├── floating.png │ ├── fullscreen.png │ ├── magnifier.png │ ├── max.png │ ├── spiral.png │ ├── tile.png │ ├── tilebottom.png │ ├── tileleft.png │ └── tiletop.png │ ├── taglist │ ├── squarefz.png │ └── squarez.png │ ├── theme.lua │ ├── titlebar │ ├── close_focus.png │ ├── floating_focus_active.png │ ├── maximized_focus_active.png │ ├── ontop_focus_active.png │ └── sticky_focus_active.png │ └── zenburn-background.png ├── tos ├── TOS_logo.png ├── TOS_logo.svg ├── colors-light.conf ├── colors.conf ├── floating.conf ├── general.conf ├── icons.conf ├── keys.conf ├── plugins.conf ├── tags.conf ├── theme └── tos.png ├── utils └── tde-client ├── xkb.c ├── xkb.h ├── xkb_utf32_to_keysym_compat.c ├── xrdb.c ├── xrdb.h ├── xwindow.c └── xwindow.h /.busted: -------------------------------------------------------------------------------- 1 | return { 2 | default = { 3 | verbose = true, 4 | helper = "spec/preload.lua", 5 | lpath = "lib/?.lua;lib/?/init.lua;spec/?.lua", 6 | }, 7 | } 8 | 9 | -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | profiler.results 2 | .tags 3 | .version_stamp 4 | .*.sw? 5 | build 6 | .luacheckcache 7 | 8 | # directories generated by PKGBUILD 9 | build-utils/tos-desktop-environment/ 10 | build-utils/src 11 | build-utils/pkg 12 | build-utils/*.pkg.tar.zst 13 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Output of `tde --version`: 2 | 3 | _REPLACE with full version output_ 4 | 5 | **How to reproduce the issue:** 6 | 7 | _REPLACE with step-by-step instructions on what to do_ 8 | 9 | **Actual result:** 10 | 11 | _REPLACE with what happened_ 12 | 13 | **Expected result:** 14 | 15 | _REPLACE with what should happen_ 16 | -------------------------------------------------------------------------------- /build-utils/atoms-ext.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "/* This file is autogenerated by $0 - do not edit */" 4 | echo 5 | 6 | while read -r atom 7 | do 8 | echo extern xcb_atom_t "$atom"\; 9 | done < "$1" 10 | 11 | # vim: filetype=sh:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 12 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3" 2 | services: 3 | test-suite: 4 | image: f0xedb/tos-test-suite 5 | volumes: 6 | - "$PWD:/data" 7 | -------------------------------------------------------------------------------- /docs/diagrams/client_rules.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/diagrams/client_rules.dia -------------------------------------------------------------------------------- /docs/images/animations_tween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/animations_tween.png -------------------------------------------------------------------------------- /docs/images/awful_widget_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/awful_widget_watch.png -------------------------------------------------------------------------------- /docs/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/button.png -------------------------------------------------------------------------------- /docs/images/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/card.png -------------------------------------------------------------------------------- /docs/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/checkbox.png -------------------------------------------------------------------------------- /docs/images/hidden-inputfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/hidden-inputfield.png -------------------------------------------------------------------------------- /docs/images/inputfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/inputfield.png -------------------------------------------------------------------------------- /docs/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/loading.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/profilebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/profilebox.png -------------------------------------------------------------------------------- /docs/images/progress_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/progress_bar.png -------------------------------------------------------------------------------- /docs/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/slider.png -------------------------------------------------------------------------------- /docs/images/widgetlayout1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/widgetlayout1.png -------------------------------------------------------------------------------- /docs/images/widgetlayout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/docs/images/widgetlayout2.png -------------------------------------------------------------------------------- /icons/awesome16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/icons/awesome16.png -------------------------------------------------------------------------------- /icons/awesome32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/icons/awesome32.png -------------------------------------------------------------------------------- /icons/awesome48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/icons/awesome48.png -------------------------------------------------------------------------------- /icons/awesome64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/icons/awesome64.png -------------------------------------------------------------------------------- /images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/images/desktop.png -------------------------------------------------------------------------------- /lib/awful/ewmh.lua: -------------------------------------------------------------------------------- 1 | local gdebug = require("gears.debug") 2 | 3 | -- It diverged over time to the point where it had nothing to do with EWMH. 4 | return gdebug.deprecate_class( 5 | require("awful.permissions"), 6 | "awful.ewmh", 7 | "awful.permissions", 8 | { deprecated_in = 5} 9 | ) 10 | -------------------------------------------------------------------------------- /lib/gears/sort/init.lua: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------- 2 | --- Extra sorting algorithms. 3 | -- 4 | -- @utillib gears.sort 5 | --------------------------------------------------------------------------- 6 | 7 | return { 8 | topological = require("gears.sort.topological") 9 | } 10 | -------------------------------------------------------------------------------- /lib/ruled/init.lua: -------------------------------------------------------------------------------- 1 | return { 2 | client = require( "ruled.client" ), 3 | notification = require( "ruled.notification" ), 4 | } 5 | -------------------------------------------------------------------------------- /plugins/android-connect/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "icon": "logo.svg", 4 | "version": "v0.1.0", 5 | "description": "Automatically connect your android phone to your the computer", 6 | "description_nl": "Connecteer u android gsm automatisch met deze computer" 7 | } -------------------------------------------------------------------------------- /plugins/animation-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "topbar", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/battery-chart/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/plugins/battery-chart/logo.png -------------------------------------------------------------------------------- /plugins/battery-chart/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "settings", 3 | "icon": "logo.png", 4 | "version": "v1.0.0", 5 | "description": "Draws a graph of your battery usage", 6 | "name": "Battery graph" 7 | } -------------------------------------------------------------------------------- /plugins/battery-chart/readme.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | Install this plugin by adding this directory to `~/.config/tde/battery-chart` 4 | 5 | Go to the settings -> plugins -> enable this plugin -------------------------------------------------------------------------------- /plugins/calendar-bare-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "notification", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/calendar-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "notification", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/chess/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "icon": "white_horse.svg", 4 | "version": "v0.1.0" 5 | } -------------------------------------------------------------------------------- /plugins/desktop-widgets/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "icon": "layout_tile", 4 | "version": "v1.0.0", 5 | "description": "Allow showing the RAM and CPU on the desktop", 6 | "name": "Desktop Ram and CPU widgets" 7 | } -------------------------------------------------------------------------------- /plugins/docker-widget/icons/pause-btn.svg: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/docker-widget/icons/play-btn.svg: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/docker-widget/icons/play-btn.svg-: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/docker-widget/icons/stop-btn.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/docker-widget/icons/unpause-btn.svg: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/docker-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "topbar", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/error-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "topbar", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/github-contributions-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/hello-world-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "notification", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/hello-world/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/icon_button/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "topbar", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/jira-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "topbar", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/keyboard/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/plugins/keyboard/logo.png -------------------------------------------------------------------------------- /plugins/keyboard/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "settings", 3 | "icon": "keyboard", 4 | "version": "v1.0.0", 5 | "description": "Allow changing your keyboard shortcuts", 6 | "name": "Keyboard Shortcuts" 7 | } -------------------------------------------------------------------------------- /plugins/keyboard/readme.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | Install this plugin by adding this directory to `~/.config/tde/keyboard` 4 | 5 | Go to the settings -> plugins -> enable this plugin -------------------------------------------------------------------------------- /plugins/prompt-example-plugin/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "prompt", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/settings-app-widget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "settings", 3 | "example": true 4 | } -------------------------------------------------------------------------------- /plugins/snake/COPYRIGHT.md: -------------------------------------------------------------------------------- 1 | Snake icon made by Freepik from www.flaticon.com 2 | -------------------------------------------------------------------------------- /plugins/snake/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "icon": "snake.svg", 4 | "version": "v1.0.0" 5 | } -------------------------------------------------------------------------------- /profiler/compare_memory.tde: -------------------------------------------------------------------------------- 1 | #!/usr/bin/tde-client 2 | 3 | require("MemoryReferenceInfo").m_cMethods.DumpMemorySnapshotComparedFile("./", "Compared", -1, 4 | os.getenv("PWD") .. "/LuaMemRefInfo-before.txt", 5 | os.getenv("PWD") .. "/LuaMemRefInfo-after.txt") -------------------------------------------------------------------------------- /profiler/mock.lua: -------------------------------------------------------------------------------- 1 | _G.awful = { 2 | spawn = { 3 | easy_async = function(cmd, callback) 4 | local handle = assert(io.popen(cmd, "r")) 5 | local commandOutput = assert(handle:read("*a")) 6 | local returnTable = {handle:close()} 7 | 8 | callback(commandOutput, "", "", returnTable[3]) 9 | end 10 | } 11 | } -------------------------------------------------------------------------------- /profiler/scripts/README.md: -------------------------------------------------------------------------------- 1 | # scripts 2 | 3 | This directory contains helper scripts to parse the result of the profilers 4 | Usually you use the scripts like so: 5 | 6 | ```bash 7 | bash profiler/scripts/sort-by-function-call.sh generated-data.log 8 | ``` 9 | -------------------------------------------------------------------------------- /profiler/snapshot.tde: -------------------------------------------------------------------------------- 1 | #!/usr/bin/tde-client 2 | 3 | require("MemoryReferenceInfo").m_cMethods.DumpMemorySnapshot(os.getenv("PWD"), "snap", -1) -------------------------------------------------------------------------------- /spec/beautiful/tests/Bad_1.lua: -------------------------------------------------------------------------------- 1 | local me = {} 2 | return me 3 | -------------------------------------------------------------------------------- /spec/beautiful/tests/Bad_2.lua: -------------------------------------------------------------------------------- 1 | local me = function() end 2 | return me 3 | -------------------------------------------------------------------------------- /spec/beautiful/tests/Bad_3.lua: -------------------------------------------------------------------------------- 1 | local me = 9 2 | return me 3 | -------------------------------------------------------------------------------- /spec/beautiful/tests/Bad_4.lua: -------------------------------------------------------------------------------- 1 | local me = nil 2 | return me 3 | -------------------------------------------------------------------------------- /spec/beautiful/tests/Bad_5.lua: -------------------------------------------------------------------------------- 1 | local var = nil 2 | print( var.bad ) 3 | -------------------------------------------------------------------------------- /spec/beautiful/tests/Good.lua: -------------------------------------------------------------------------------- 1 | local me = { font = "Monospace Bold 12" } 2 | return me 3 | -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/a.png -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/b.jpg -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/x/Exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/x/Exec -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/x/NoExec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/x/NoExec -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/x/NoRead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/x/NoRead -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/x/Read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/x/Read -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/.file.name.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/.file.name.ext -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/.file.name.ext.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/.file.name.ext. -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/.filename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/.filename -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/.filename.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/.filename. -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/.filename.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/.filename.ext -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/file.name.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/file.name.ext -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/file.name.ext.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/file.name.ext. -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/filename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/filename -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/filename.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/filename. -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/filename.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/filename.ext -------------------------------------------------------------------------------- /spec/gears/filesystem_tests/y/filename.ext.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/spec/gears/filesystem_tests/y/filename.ext. -------------------------------------------------------------------------------- /spec/menubar/home/.icons/awesome: -------------------------------------------------------------------------------- 1 | ../../icons/awesome -------------------------------------------------------------------------------- /spec/menubar/home/.icons/icon5.png: -------------------------------------------------------------------------------- 1 | ../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/home/.icons/icon6.xpm: -------------------------------------------------------------------------------- 1 | ../../../../icons/awesome16.png 2 | -------------------------------------------------------------------------------- /spec/menubar/home/.icons/icon7.svg: -------------------------------------------------------------------------------- 1 | ../../../../icons/awesome16.png 2 | -------------------------------------------------------------------------------- /spec/menubar/home/.local/share/icons/icon4.png: -------------------------------------------------------------------------------- 1 | ../../../../../../icons/awesome16.png -------------------------------------------------------------------------------- /spec/menubar/home/.local/share/icons/icon5.png: -------------------------------------------------------------------------------- 1 | ../../../../../../icons/awesome16.png -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/16x16/apps/awesome.png: -------------------------------------------------------------------------------- 1 | ../../../../../../icons/awesome16.png -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/32x32/apps/awesome.png: -------------------------------------------------------------------------------- 1 | ../../../../../../icons/awesome32.png -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/48x48/apps/awesome.png: -------------------------------------------------------------------------------- 1 | ../../../../../../icons/awesome48.png -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/64x64/apps/awesome.png: -------------------------------------------------------------------------------- 1 | ../../../../../../icons/awesome64.png -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/64x64/apps/awesome2.png: -------------------------------------------------------------------------------- 1 | awesome.png -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=awesome 3 | 4 | Directories=16x16/apps,32x32/apps,48x48/apps,64x64/apps, 5 | 6 | [16x16/apps] 7 | Size=16 8 | 9 | [32x32/apps] 10 | Size=32 11 | 12 | [48x48/apps] 13 | Size=48 14 | 15 | [64x64/apps] 16 | Size=64 17 | -------------------------------------------------------------------------------- /spec/menubar/icons/awesome/scalable/apps/awesome2.png: -------------------------------------------------------------------------------- 1 | ../../64x64/apps/awesome.png -------------------------------------------------------------------------------- /spec/menubar/icons/fallback.png: -------------------------------------------------------------------------------- 1 | ../../../icons/awesome16.png -------------------------------------------------------------------------------- /spec/menubar/usr/local/share/icons/icon3.png: -------------------------------------------------------------------------------- 1 | ../../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/local/share/icons/icon4.png: -------------------------------------------------------------------------------- 1 | ../../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/local/share/icons/icon5.png: -------------------------------------------------------------------------------- 1 | ../../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/.filename.png: -------------------------------------------------------------------------------- 1 | ../../../../icons/awesome16.png 2 | -------------------------------------------------------------------------------- /spec/menubar/usr/share/icon5.png: -------------------------------------------------------------------------------- 1 | ../../../../icons/awesome16.png 2 | -------------------------------------------------------------------------------- /spec/menubar/usr/share/icon6.xpm: -------------------------------------------------------------------------------- 1 | ../../../../icons/awesome16.png 2 | -------------------------------------------------------------------------------- /spec/menubar/usr/share/icon7.svg: -------------------------------------------------------------------------------- 1 | ../../../../icons/awesome16.png 2 | -------------------------------------------------------------------------------- /spec/menubar/usr/share/icons/.filename.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/icons/icon2.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/icons/icon3.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/icons/icon4.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/icons/icon5.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/pixmaps/icon1.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/pixmaps/icon2.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/pixmaps/icon3.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/pixmaps/icon4.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /spec/menubar/usr/share/pixmaps/icon5.png: -------------------------------------------------------------------------------- 1 | ../../../icons/fallback.png -------------------------------------------------------------------------------- /tde-settings.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | X-Desktop-File-Install-Version=0.11 3 | Name=TDE Settings 4 | 5 | Comment=Settings application 6 | 7 | Exec=tde-client "root.elements.settings.enable_view_by_index(-1, mouse.screen)" 8 | Icon=preferences-desktop-theme 9 | Terminal=false 10 | Type=Application 11 | Categories=Settings;DesktopSettings;TDE; 12 | -------------------------------------------------------------------------------- /tde.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=TDE 3 | Comment=Desktop environment build ontop of awesomewm 4 | TryExec=tde 5 | Exec=tde 6 | Type=Application 7 | -------------------------------------------------------------------------------- /tde/configuration/rofi/sidebar/icons/suggestion.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/lib-tde/lib-lua/posix/util.lua: -------------------------------------------------------------------------------- 1 | --[[ 2 | POSIX library for Lua 5.1, 5.2, 5.3 & 5.4. 3 | Copyright (C) 2014-2020 Gary V. Vaughan 4 | ]] 5 | 6 | -- Backwards compatibility alias. 7 | 8 | return { 9 | openpty = require 'posix'.openpty, 10 | } 11 | -------------------------------------------------------------------------------- /tde/lib-tde/lib-lua/posix/version.lua: -------------------------------------------------------------------------------- 1 | return 'posix for ' .. _VERSION .. ' / luaposix 35.0' 2 | -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/cjson.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/cjson.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/inotify.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/inotify.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/mime/core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/mime/core.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/ctype.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/ctype.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/dirent.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/dirent.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/errno.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/errno.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/fcntl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/fcntl.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/fnmatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/fnmatch.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/glob.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/glob.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/grp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/grp.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/libgen.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/libgen.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/poll.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/poll.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/pwd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/pwd.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sched.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sched.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/signal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/signal.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/stdio.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/stdio.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/stdlib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/stdlib.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/msg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/msg.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/resource.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/resource.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/socket.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/socket.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/stat.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/stat.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/statvfs.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/statvfs.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/time.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/time.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/times.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/times.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/utsname.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/utsname.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/sys/wait.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/sys/wait.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/syslog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/syslog.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/termio.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/termio.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/time.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/time.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/unistd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/unistd.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/posix/utime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/posix/utime.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/socket/core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/socket/core.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/socket/serial.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/socket/serial.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/socket/unix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/socket/unix.so -------------------------------------------------------------------------------- /tde/lib-tde/lib-so/ssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/lib-tde/lib-so/ssl.so -------------------------------------------------------------------------------- /tde/release.lua: -------------------------------------------------------------------------------- 1 | return "879939692a0c3bdbd1662fd666477f4248290da0" -------------------------------------------------------------------------------- /tde/sound/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/sound/alarm.wav -------------------------------------------------------------------------------- /tde/sound/audio-pop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/sound/audio-pop.wav -------------------------------------------------------------------------------- /tde/theme/icons/arrow_down.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/arrow_down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/arrow_up.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/arrow_up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/bios.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/bios.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/bluetooth.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/brightness-7.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/brightness-7.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/brush.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/calendar.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/chart-areaspline.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/chart-areaspline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/check.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/clock-add.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/clock.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/close.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/copy.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/developer.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/developer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/docs.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/docs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/download.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/dwindle.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/dwindle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/edit.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/edit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/firewall.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/firewall.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/folder.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/forum.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/forum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/info.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/layouts/arrow-expand-all.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/arrow-expand-all.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/arrow-expand-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/arrow-expand-all.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/dwindle.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/dwindle.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/dwindle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/dwindle.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/fair.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/fair.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/fair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/fair.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/fairh.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/fairh.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/fairh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/fairh.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/floating.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/floating.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/floating.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/magnifier.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/magnifier.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/magnifier.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/view-quilt.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/view-quilt.dark.png -------------------------------------------------------------------------------- /tde/theme/icons/layouts/view-quilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/layouts/view-quilt.png -------------------------------------------------------------------------------- /tde/theme/icons/lock.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/login.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/login.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/logout.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/logout.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/magnify.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/magnify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/memory.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/memory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/microphone.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/microphone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/mime.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/mime.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/minus.black.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/mouse.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/network.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/network.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/noicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/noicon.png -------------------------------------------------------------------------------- /tde/theme/icons/plus.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/power-sleep.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/power-sleep.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/power.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/power.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/restart.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/occupied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/occupied.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/panel.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/selected.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/close.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/code-braces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/code-braces.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/flask.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/folder.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/forum.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/google-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/google-chrome.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/google-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/google-controller.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/home.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/tag/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/tag/music.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/unselected.png -------------------------------------------------------------------------------- /tde/theme/icons/tag-list/urgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/icons/tag-list/urgent.png -------------------------------------------------------------------------------- /tde/theme/icons/themes/original/code-braces.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/themes/original/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/themes/original/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/themes/original/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/thermometer.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/thermometer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/close_focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/close_focus_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/close_normal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/close_normal_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/floating_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/maximized_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/minimize_focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/minimize_focus_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/minimize_normal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/minimize_normal_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/ontop_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/lines/sticky_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/close_focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/close_focus_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/close_normal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/close_normal_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/floating_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/maximized_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/minimize_focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/minimize_focus_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/minimize_normal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/minimize_normal_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/ontop_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_focus_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_focus_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_focus_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_focus_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_normal_active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_normal_active_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_normal_inactive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/titlebar/stoplight/sticky_normal_inactive_hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/trash.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/upload.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/upload.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/user.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/volume-high.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/volume-high.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/warning.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/warning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/wifi.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/icons/wifi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/theme/wallpapers/locksreen-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/wallpapers/locksreen-bg.jpg -------------------------------------------------------------------------------- /tde/theme/wallpapers/midnight-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/wallpapers/midnight-wallpaper.jpg -------------------------------------------------------------------------------- /tde/theme/wallpapers/morning-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/wallpapers/morning-wallpaper.jpg -------------------------------------------------------------------------------- /tde/theme/wallpapers/night-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/wallpapers/night-wallpaper.jpg -------------------------------------------------------------------------------- /tde/theme/wallpapers/noon-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tde/theme/wallpapers/noon-wallpaper.jpg -------------------------------------------------------------------------------- /tde/widget/about/icons/info.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/about/icons/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-10.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-10.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-20.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-20.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-30.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-30.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-40.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-40.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-50.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-50.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-60.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-60.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-70.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-70.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-80.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-80.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-90.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-90.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-alert.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-alert.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-charging-100.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-fully-charged-90.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-fully-charged.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-minus.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-negative.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-outline.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-standard.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery-standard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/battery/icons/battery.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/bluetooth/icons/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/blur-toggle/icons/effects.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ae.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/am.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/at.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/be.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bq.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/bw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/cd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ci.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/co.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/cr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/cz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/de.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/dk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/dz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/es-ct.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/fi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/fr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ga.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gb-eng.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gb-sct.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/gp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/hu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/id.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/it.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/jm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/lc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/lu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/lv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ml.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mq.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/mv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ne.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ng.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/nl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/no.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/pl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/pm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/qa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/re.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ru.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/se.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/sj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/sl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/sr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/td.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/th.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/to.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/tt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ua.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/wf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/ye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/keyboard/flags/yt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/music/icons/play.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/notif-center/icons/delete.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/tray-toggle/icons/left-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/tray-toggle/icons/right-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/wifi/icons/wifi-strength-4.dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tde/widget/wifi/icons/wifi-strength-4.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/awful/notification/box_corner.output.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ====================VVVVVV table: 0x5602abbcedd0 5 | -------------------------------------------------------------------------------- /tests/examples/awful/screen/split1.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_IMAGE --DOC_HIDE --DOC_NO_USAGE 2 | 3 | require("awful.screen") --DOC_HIDE 4 | 5 | screen[1]._resize {x = 95, width = 256, height = 108} --DOC_HIDE 6 | 7 | screen[1]:split({1/5, 3/5, 1/5}) 8 | 9 | --DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 10 | -------------------------------------------------------------------------------- /tests/examples/awful/screen/split2.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_IMAGE --DOC_HIDE --DOC_NO_USAGE 2 | 3 | require("awful.screen") --DOC_HIDE 4 | 5 | screen[1]._resize {x = 175, width = 108, height = 198} --DOC_HIDE 6 | 7 | screen[1]:split() 8 | 9 | --DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 10 | -------------------------------------------------------------------------------- /tests/examples/sequences/client/cycle1.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tests/examples/sequences/client/cycle1.output.txt -------------------------------------------------------------------------------- /tests/examples/shims/beautiful/xresources.lua: -------------------------------------------------------------------------------- 1 | return { 2 | apply_dpi = function(size, _) 3 | return size 4 | end, 5 | get_dpi = function() return 96 end, 6 | } 7 | 8 | -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 9 | -------------------------------------------------------------------------------- /tests/examples/shims/mousegrabber.lua: -------------------------------------------------------------------------------- 1 | local mousegrabber = { 2 | run = function() end, 3 | stop = function() end, 4 | is_running = function() return false end, 5 | } 6 | 7 | return mousegrabber 8 | 9 | -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 10 | -------------------------------------------------------------------------------- /tests/examples/text/awful/keygrabber/root_keybindings.output.txt: -------------------------------------------------------------------------------- 1 | Is now active! nil 2 | A key was pressed: a with 0 modifier! 3 | A key was pressed: i with 1 modifier! 4 | Called again! 5 | -------------------------------------------------------------------------------- /tests/examples/text/awful/layout/remove.output.txt: -------------------------------------------------------------------------------- 1 | Before: floating 2 | Before: tile 3 | Before: max 4 | After: floating 5 | After: max 6 | -------------------------------------------------------------------------------- /tests/examples/text/gears/cache/another_cache.output.txt: -------------------------------------------------------------------------------- 1 | cache object #0 for first 2 | cache object #1 for second 3 | cache object #0 for first 4 | forcing a garbage collect 5 | cache object #2 for first 6 | cache object #3 for second 7 | -------------------------------------------------------------------------------- /tests/examples/text/gears/cache/cache.output.txt: -------------------------------------------------------------------------------- 1 | new entry created with value 0 2 | 0 3 | new entry created with value 1 4 | 42 5 | new entry created with value 2 6 | 84 7 | 0 8 | -------------------------------------------------------------------------------- /tests/examples/text/gears/matcher/properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tests/examples/text/gears/matcher/properties.txt -------------------------------------------------------------------------------- /tests/examples/text/gears/object/properties.output.txt: -------------------------------------------------------------------------------- 1 | In get foo bar 2 | bar 3 | In set foo 42 4 | In get foo 42 5 | 42 6 | In a method 1 2 3 7 | nil 8 | In the connection handler! a cow 9 | a cow 10 | -------------------------------------------------------------------------------- /tests/examples/text/gears/object/signal.output.txt: -------------------------------------------------------------------------------- 1 | In slot [obj] nil nil nil 2 | In slot [obj] foo bar 42 3 | -------------------------------------------------------------------------------- /tests/examples/text/gears/sort/topological.output.txt: -------------------------------------------------------------------------------- 1 | The position #1 is: a 2 | The position #2 is: b 3 | The position #3 is: c 4 | The position #4 is: d 5 | The position #5 is: e 6 | The position #6 is: f 7 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/endswith.output.txt: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | false 4 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/linecount.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_OUTPUT --DOC_HIDE 2 | local gears = require("gears") --DOC_HIDE 3 | 4 | local test = "do.t" 5 | local res = gears.string.linecount(test) 6 | print("Count is: " .. res) 7 | 8 | local test2 = "do\nit\nnow" 9 | local res2 = gears.string.linecount(test2) 10 | print("Count is: " .. res2) 11 | 12 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/linecount.output.txt: -------------------------------------------------------------------------------- 1 | Count is: 1 2 | Count is: 3 3 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/linewrap.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_OUTPUT --DOC_HIDE 2 | local gears = require("gears") --DOC_HIDE 3 | 4 | local test = "do it" 5 | local res = gears.string.linewrap(test, 2, 0) 6 | print(res) 7 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/linewrap.output.txt: -------------------------------------------------------------------------------- 1 | do 2 | it 3 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/quote_pattern.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_OUTPUT --DOC_HIDE 2 | local gears = require("gears") --DOC_HIDE 3 | 4 | local test = "do.it" 5 | local res = gears.string.quote_pattern(test) 6 | print(res) 7 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/quote_pattern.output.txt: -------------------------------------------------------------------------------- 1 | do%.it 2 | -------------------------------------------------------------------------------- /tests/examples/text/gears/string/startswith.output.txt: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | false 4 | -------------------------------------------------------------------------------- /tests/examples/text/gears/table/count_keys.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_OUTPUT --DOC_HIDE 2 | local gears = require("gears") --DOC_HIDE 3 | 4 | local tab = { 1, nil, "a", "b", foo = "bar" } 5 | local count = gears.table.count_keys(tab) 6 | print("The table has " .. count .. " keys") 7 | -------------------------------------------------------------------------------- /tests/examples/text/gears/table/cycle_value.lua: -------------------------------------------------------------------------------- 1 | --DOC_GEN_OUTPUT --DOC_HIDE 2 | local gears = require("gears") --DOC_HIDE 3 | 4 | local res = {"a", "b", "c", "d", "e"} 5 | 6 | for i=1, #res do 7 | local k = res[i] 8 | local v = gears.table.cycle_value(res, k, 1) 9 | print(v) 10 | end 11 | -------------------------------------------------------------------------------- /tests/examples/text/root/fake_click.lua: -------------------------------------------------------------------------------- 1 | --DOC_NO_USAGE --DOC_ASTERISK 2 | 3 | local function click(button_id, x, y) 4 | mouse.coords {x = x, y = y} 5 | root.fake_input("button_press" , button_id) 6 | root.fake_input("button_release", button_id) 7 | end 8 | --DOC_NEWLINE 9 | click(1, 42, 42) 10 | -------------------------------------------------------------------------------- /tests/examples/text/template.lua: -------------------------------------------------------------------------------- 1 | local file_path = ... 2 | require("_common_template")(...) 3 | 4 | -- Execute the test 5 | loadfile(file_path)() 6 | 7 | -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 8 | -------------------------------------------------------------------------------- /themes/default/README: -------------------------------------------------------------------------------- 1 | Background images: 2 | Mikael Eriksson 3 | Licensed under CC-BY-SA-3.0 4 | -------------------------------------------------------------------------------- /themes/default/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/background.jpg -------------------------------------------------------------------------------- /themes/default/layouts/cornerne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornerne.png -------------------------------------------------------------------------------- /themes/default/layouts/cornernew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornernew.png -------------------------------------------------------------------------------- /themes/default/layouts/cornernw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornernw.png -------------------------------------------------------------------------------- /themes/default/layouts/cornernww.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornernww.png -------------------------------------------------------------------------------- /themes/default/layouts/cornerse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornerse.png -------------------------------------------------------------------------------- /themes/default/layouts/cornersew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornersew.png -------------------------------------------------------------------------------- /themes/default/layouts/cornersw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornersw.png -------------------------------------------------------------------------------- /themes/default/layouts/cornersww.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/cornersww.png -------------------------------------------------------------------------------- /themes/default/layouts/dwindle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/dwindle.png -------------------------------------------------------------------------------- /themes/default/layouts/dwindlew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/dwindlew.png -------------------------------------------------------------------------------- /themes/default/layouts/fairh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/fairh.png -------------------------------------------------------------------------------- /themes/default/layouts/fairhw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/fairhw.png -------------------------------------------------------------------------------- /themes/default/layouts/fairv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/fairv.png -------------------------------------------------------------------------------- /themes/default/layouts/fairvw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/fairvw.png -------------------------------------------------------------------------------- /themes/default/layouts/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/floating.png -------------------------------------------------------------------------------- /themes/default/layouts/floatingw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/floatingw.png -------------------------------------------------------------------------------- /themes/default/layouts/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/fullscreen.png -------------------------------------------------------------------------------- /themes/default/layouts/fullscreenw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/fullscreenw.png -------------------------------------------------------------------------------- /themes/default/layouts/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/magnifier.png -------------------------------------------------------------------------------- /themes/default/layouts/magnifierw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/magnifierw.png -------------------------------------------------------------------------------- /themes/default/layouts/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/max.png -------------------------------------------------------------------------------- /themes/default/layouts/maxw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/maxw.png -------------------------------------------------------------------------------- /themes/default/layouts/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/spiral.png -------------------------------------------------------------------------------- /themes/default/layouts/spiralw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/spiralw.png -------------------------------------------------------------------------------- /themes/default/layouts/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tile.png -------------------------------------------------------------------------------- /themes/default/layouts/tilebottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tilebottom.png -------------------------------------------------------------------------------- /themes/default/layouts/tilebottomw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tilebottomw.png -------------------------------------------------------------------------------- /themes/default/layouts/tileleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tileleft.png -------------------------------------------------------------------------------- /themes/default/layouts/tileleftw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tileleftw.png -------------------------------------------------------------------------------- /themes/default/layouts/tiletop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tiletop.png -------------------------------------------------------------------------------- /themes/default/layouts/tiletopw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tiletopw.png -------------------------------------------------------------------------------- /themes/default/layouts/tilew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/layouts/tilew.png -------------------------------------------------------------------------------- /themes/default/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/submenu.png -------------------------------------------------------------------------------- /themes/default/taglist/squarefw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/taglist/squarefw.png -------------------------------------------------------------------------------- /themes/default/taglist/squarew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/taglist/squarew.png -------------------------------------------------------------------------------- /themes/default/titlebar/close_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/close_focus.png -------------------------------------------------------------------------------- /themes/default/titlebar/close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/close_normal.png -------------------------------------------------------------------------------- /themes/default/titlebar/floating_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/floating_focus_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/floating_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/floating_focus_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/floating_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/floating_normal_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/floating_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/floating_normal_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/maximized_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/maximized_focus_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/maximized_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/maximized_focus_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/maximized_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/maximized_normal_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/maximized_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/maximized_normal_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/minimize_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/minimize_focus.png -------------------------------------------------------------------------------- /themes/default/titlebar/minimize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/minimize_normal.png -------------------------------------------------------------------------------- /themes/default/titlebar/ontop_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/ontop_focus_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/ontop_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/ontop_focus_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/ontop_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/ontop_normal_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/ontop_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/ontop_normal_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/sticky_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/sticky_focus_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/sticky_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/sticky_focus_inactive.png -------------------------------------------------------------------------------- /themes/default/titlebar/sticky_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/sticky_normal_active.png -------------------------------------------------------------------------------- /themes/default/titlebar/sticky_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/default/titlebar/sticky_normal_inactive.png -------------------------------------------------------------------------------- /themes/sky/awesome-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/awesome-icon.png -------------------------------------------------------------------------------- /themes/sky/layouts/cornerne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/cornerne.png -------------------------------------------------------------------------------- /themes/sky/layouts/cornernw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/cornernw.png -------------------------------------------------------------------------------- /themes/sky/layouts/cornerse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/cornerse.png -------------------------------------------------------------------------------- /themes/sky/layouts/cornersw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/cornersw.png -------------------------------------------------------------------------------- /themes/sky/layouts/dwindle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/dwindle.png -------------------------------------------------------------------------------- /themes/sky/layouts/fairh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/fairh.png -------------------------------------------------------------------------------- /themes/sky/layouts/fairv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/fairv.png -------------------------------------------------------------------------------- /themes/sky/layouts/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/floating.png -------------------------------------------------------------------------------- /themes/sky/layouts/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/fullscreen.png -------------------------------------------------------------------------------- /themes/sky/layouts/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/magnifier.png -------------------------------------------------------------------------------- /themes/sky/layouts/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/max.png -------------------------------------------------------------------------------- /themes/sky/layouts/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/spiral.png -------------------------------------------------------------------------------- /themes/sky/layouts/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/tile.png -------------------------------------------------------------------------------- /themes/sky/layouts/tilebottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/tilebottom.png -------------------------------------------------------------------------------- /themes/sky/layouts/tileleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/tileleft.png -------------------------------------------------------------------------------- /themes/sky/layouts/tiletop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/layouts/tiletop.png -------------------------------------------------------------------------------- /themes/sky/sky-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/sky/sky-background.png -------------------------------------------------------------------------------- /themes/xresources/assets.lua: -------------------------------------------------------------------------------- 1 | require("gears.debug").deprecate("Use beautiful.theme_assets instead.", {raw=true}) 2 | return require("beautiful.theme_assets") 3 | -------------------------------------------------------------------------------- /themes/zenburn/awesome-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/awesome-icon.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/cornerne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/cornerne.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/cornernw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/cornernw.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/cornerse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/cornerse.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/cornersw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/cornersw.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/dwindle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/dwindle.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/fairh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/fairh.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/fairv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/fairv.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/floating.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/fullscreen.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/magnifier.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/max.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/spiral.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/tile.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/tilebottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/tilebottom.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/tileleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/tileleft.png -------------------------------------------------------------------------------- /themes/zenburn/layouts/tiletop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/layouts/tiletop.png -------------------------------------------------------------------------------- /themes/zenburn/taglist/squarefz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/taglist/squarefz.png -------------------------------------------------------------------------------- /themes/zenburn/taglist/squarez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/taglist/squarez.png -------------------------------------------------------------------------------- /themes/zenburn/titlebar/close_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/titlebar/close_focus.png -------------------------------------------------------------------------------- /themes/zenburn/titlebar/floating_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/titlebar/floating_focus_active.png -------------------------------------------------------------------------------- /themes/zenburn/titlebar/maximized_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/titlebar/maximized_focus_active.png -------------------------------------------------------------------------------- /themes/zenburn/titlebar/ontop_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/titlebar/ontop_focus_active.png -------------------------------------------------------------------------------- /themes/zenburn/titlebar/sticky_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/titlebar/sticky_focus_active.png -------------------------------------------------------------------------------- /themes/zenburn/zenburn-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/themes/zenburn/zenburn-background.png -------------------------------------------------------------------------------- /tos/TOS_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tos/TOS_logo.png -------------------------------------------------------------------------------- /tos/theme: -------------------------------------------------------------------------------- 1 | off 2 | time=100000 3 | full=false 4 | bluetooth=false 5 | /usr/share/backgrounds/tos/default.jpg 6 | -------------------------------------------------------------------------------- /tos/tos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODEX-TOS/tos-desktop-environment/dc08eede545f0dc0ac853f6bf2c2ee8ea00f4422/tos/tos.png --------------------------------------------------------------------------------