├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── manifest.json ├── screenshot.png ├── theme-gtk-3.20.css └── theme.css /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | generated.css 2 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/manifest.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/screenshot.png -------------------------------------------------------------------------------- /theme-gtk-3.20.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/theme-gtk-3.20.css -------------------------------------------------------------------------------- /theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/ulauncher/HEAD/theme.css --------------------------------------------------------------------------------