├── .codeclimate.yml ├── COPYING ├── Gemfile ├── README.md ├── Rakefile ├── TODO ├── bin └── topinambour ├── color_selection_screen.gif ├── data ├── app-menu.ui ├── gschemas.compiled ├── headerbar.ui ├── main-menu-popover.ui ├── prefs-dialog.ui ├── shortcuts.ui ├── terminal-menu.ui ├── topinambour.css ├── topinambour.gresource ├── topinambour.gresource.xml ├── topinambour.gschema.xml └── window-menu.ui ├── gpl-3.0.txt ├── lib ├── about.rb ├── actions.rb ├── application.rb ├── color_selector.rb ├── font_selector.rb ├── preferences.rb ├── profile.rb ├── rgb_names_regexes.rb ├── shortcuts.rb ├── terminal.rb ├── terminal_regex.rb ├── version.rb └── window.rb ├── screenshot1.png ├── screenshot_color_scheme.png ├── screenshot_shortcuts.png ├── screenshot_terminal_chooser.png ├── terminal_regex_color.gif ├── terminal_selector_screen.gif ├── tests ├── css_handler_tests.rb ├── file1.css ├── file1.sass ├── file1.scss ├── file2.css ├── file3.css ├── file4.css ├── file4_append_prop.css ├── file4_mod.css ├── file5.css ├── file5_mod.css ├── terminal_regex_test.rb └── test_files_ref.rb ├── tools ├── rgb.txt └── rgb_builder.rb ├── topinambour.gemspec └── topinambour_tmux.png /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/TODO -------------------------------------------------------------------------------- /bin/topinambour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/bin/topinambour -------------------------------------------------------------------------------- /color_selection_screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/color_selection_screen.gif -------------------------------------------------------------------------------- /data/app-menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/app-menu.ui -------------------------------------------------------------------------------- /data/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/gschemas.compiled -------------------------------------------------------------------------------- /data/headerbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/headerbar.ui -------------------------------------------------------------------------------- /data/main-menu-popover.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/main-menu-popover.ui -------------------------------------------------------------------------------- /data/prefs-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/prefs-dialog.ui -------------------------------------------------------------------------------- /data/shortcuts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/shortcuts.ui -------------------------------------------------------------------------------- /data/terminal-menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/terminal-menu.ui -------------------------------------------------------------------------------- /data/topinambour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/topinambour.css -------------------------------------------------------------------------------- /data/topinambour.gresource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/topinambour.gresource -------------------------------------------------------------------------------- /data/topinambour.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/topinambour.gresource.xml -------------------------------------------------------------------------------- /data/topinambour.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/topinambour.gschema.xml -------------------------------------------------------------------------------- /data/window-menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/data/window-menu.ui -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /lib/about.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/about.rb -------------------------------------------------------------------------------- /lib/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/actions.rb -------------------------------------------------------------------------------- /lib/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/application.rb -------------------------------------------------------------------------------- /lib/color_selector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/color_selector.rb -------------------------------------------------------------------------------- /lib/font_selector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/font_selector.rb -------------------------------------------------------------------------------- /lib/preferences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/preferences.rb -------------------------------------------------------------------------------- /lib/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/profile.rb -------------------------------------------------------------------------------- /lib/rgb_names_regexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/rgb_names_regexes.rb -------------------------------------------------------------------------------- /lib/shortcuts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/shortcuts.rb -------------------------------------------------------------------------------- /lib/terminal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/terminal.rb -------------------------------------------------------------------------------- /lib/terminal_regex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/terminal_regex.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/version.rb -------------------------------------------------------------------------------- /lib/window.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/lib/window.rb -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot_color_scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/screenshot_color_scheme.png -------------------------------------------------------------------------------- /screenshot_shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/screenshot_shortcuts.png -------------------------------------------------------------------------------- /screenshot_terminal_chooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/screenshot_terminal_chooser.png -------------------------------------------------------------------------------- /terminal_regex_color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/terminal_regex_color.gif -------------------------------------------------------------------------------- /terminal_selector_screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/terminal_selector_screen.gif -------------------------------------------------------------------------------- /tests/css_handler_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/css_handler_tests.rb -------------------------------------------------------------------------------- /tests/file1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file1.css -------------------------------------------------------------------------------- /tests/file1.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file1.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file2.css -------------------------------------------------------------------------------- /tests/file3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file3.css -------------------------------------------------------------------------------- /tests/file4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file4.css -------------------------------------------------------------------------------- /tests/file4_append_prop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file4_append_prop.css -------------------------------------------------------------------------------- /tests/file4_mod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file4_mod.css -------------------------------------------------------------------------------- /tests/file5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file5.css -------------------------------------------------------------------------------- /tests/file5_mod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/file5_mod.css -------------------------------------------------------------------------------- /tests/terminal_regex_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/terminal_regex_test.rb -------------------------------------------------------------------------------- /tests/test_files_ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tests/test_files_ref.rb -------------------------------------------------------------------------------- /tools/rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tools/rgb.txt -------------------------------------------------------------------------------- /tools/rgb_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/tools/rgb_builder.rb -------------------------------------------------------------------------------- /topinambour.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/topinambour.gemspec -------------------------------------------------------------------------------- /topinambour_tmux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedlemo/topinambour/HEAD/topinambour_tmux.png --------------------------------------------------------------------------------