Giter Site home page Giter Site logo

ueli's Introduction

ueli logo

ueli

This is an alt+space launcher for Windows and macOS.

musicplayer

ueli screenshot

Table of contents

Installation

Installer / Zip

Note: because the executables are not signed Windows will probably prevent you from executing the installer or the program itself. You can click "Run anyway" to install/run the program.

  • Download the latest version here
  • Run the installer or unzip
  • Run the application

Quick tutorial

  • Press alt+space to show/hide the window
  • Start typing a program name
  • Press Enter to launch the program

Features

Program search

Feature Program search FOSSA Status

  • You can search for installed programs
  • Use the arrow keys to scroll up and down
  • Presss Enter to launch the selected program

Files and folder search

Feature home folder

  • You can search files and folders in your home folder
  • Press Enter to open the selected file/folder

Open URLs with your default web browser

Feature URL

  • Type in a URL
  • Press enter to open the URL with your default web browser

Open default mail program

  • Type in a email address
  • Press enter to open your default mail program with an empty email to the specified email address

Feature email

Web search engines

Feature web search engines

  • You can customize web search engines like this:
"webSearches": [
    {
        "icon": "<svg>...</svg>",
        "name": "Google",
        "prefix": "g",
        "url": "https://google.com/search?q="
    }
]

Now you can type in g?{your search term} to launch the web search engine in your default browser.

Default web search engines:

Prefix Web Search Engine
d DuckDuckGo
g Google
gi Google Images
l Linguee
w Wikipedia
yt YouTube

Execute commandline tools

Feature commandline

  • Start a commandline tool with the > prefix
    • Example: >ipconfig /all
  • Stop an executing commandline tool with Ctrl+c

Note: you can not interact with the commandline tool. You only see the output.

Browse file system

Feature file browser

  • You can browse your file system by typing in a filepath
    • Example: C:\Users or /Applications
  • Press Enter to open the file or folder
  • Press Tab for autocompletion

Calculator

Feature calculator

  • Calculate simple math, matrix, symbolic function, convert unit and a lot more.
    • Example:
      • 23 * 24 / 2 + (6 * 7) ^ 2
      • 1 km/h to mile/h
      • a = [1, 2, 3]; a * 2

Custom commands

Feature custom commands

  • You can customize custom commands to
    • Start command line tools
    • Open files/folders
    • Launch programs
"customCommands": [
    {
        "name": "ping",
        "executionArgument": "start ping 8.8.8.8 -t",
        "icon": "<svg>...</svg>"
    },
    {
        "name": "Data",
        "executionArgument": "start \"\" \"C:\\Data\""
    },
    {
        "name": "code",
        "executionArgument": "start \"\" \"C:\\My-Programs\\Visual Studio Code\\Visual Studio Code.lnk\""
    },
]

Keyboard shortcuts

Keyboard shortcut Description
Ctrl+o Open the selected program or file at it's location
ArrowUp Scroll up
ArrowDown Scroll down
F6, Ctrl+l Set focus on user input
F1 Get help

Updater

To check if a new version is available right click on the tray icon. The first item in the context menu shows you if there is an update available or if you are running the latest version. If there is an update available click on "Download and install update".

Updater

Customization

All settings are stored in ~/ueli.config.json. You can modify this file to change the default values.

Options

  • applicationFileExtensions Array of string - Represents the file extensions which are used to find applications in the specified folders
  • applicationFolders Array of string - Represents the folders which are scanned for applications
  • autoStartApp Boolean - If the app should be started automatically when you log in
  • colorTheme String - Defines the color theme.
  • customCommands Arraay of customCommand objects - A list of custom commands
    • executionArgument String - Represents the execution argument for the custom command
    • name String - Represents the displayed name for the custom command
    • icon String - (Optional) Represents the svg icon for the custom command. If no icon is set default icon is used.
  • maxSearchResultCount Number - Maximum number of search results to be displayed
  • rescanInterval Number - Interval in seconds to rescan the application folders
  • searchOperatingSystemSettings Boolean - If operting system settings and commands should appear in the search results
  • searchResultExecutionArgumentFontSize Number - Represents the font size of the search result execution argument in pixels
  • searchResultHeight Number - Represents the height of a search result box in pixels
  • searchResultNameFontSize Number - Represents the font size of the search result name in pixels
  • userInputFontSize Number - Represents the font size of the user input in pixels
  • userInputHeight Number - Represents the height of the user input box in pixels
  • webSearches Array of webSearch Objects - A list of web search engines
    • webSearch Object - Defines a web search engine
      • icon String - Represents the svg icon for the specific web search engine
      • name String - Represents the name of the web search engine
      • prefix String - Represents the prefix for your web search engine. For example if the prefix is g you can type in g?{your search term} to search
      • url String - Represents the url for the search engine to which the search term is appended to. For example https://google.com/search?q=
  • windowWith: Number - Represents the width of the main window in pixels

Color themes

Color themes

  • atom-one-dark
  • dark
  • dark-mono
  • light
  • light-mono

Roadmap

  • List frequently executed programs/files/settings higher
  • Add option to add custom shortcuts
  • Add input history browsing
  • Add nice GUI to modifiy configuration
  • Notify user when update is available
  • Use vue components

Development

Build status

Platform Build status
Windows Build status
macOS Build status

Code coverage

Coverage Status

Requirements

  • Git
  • Node.js
  • Yarn

Setup

$ git clone https://github.com/oliverschwendener/ueli
$ cd ueli
$ yarn

Run

$ yarn build
$ yarn start

Note: there is also a watch task $ yarn build:watch which watches the stylesheets and typescript files and transpiles them automatically if there are any changes.

Debug

Note: for debugging you need Visual Studio Code

Choose one of these debug configurations:

Debug configurations

Run tests

$ yarn test:unit
$ yarn test:integration

Code coverage

$ yarn test:unit --coverage

Package

$ yarn package

Alternatives

License

Copyright (c) Oliver Schwendener. All rights reserved.

Licensed under the MIT License.

FOSSA Status

ueli's People

Contributors

fossabot avatar khanhas avatar oliverschwendener avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.