This is an 'alt+space' launcher for Windows because I thought the default Windows 10 search function doesn't always do what I want.
- Hit
alt + space
to show/hide the main program - Start typing a program name you're looking for
- Hit enter to launch the highlighted program
- Use tab/shift+tab to scroll through the search result
- Install Node
- Clone Repo or Download ZIP
- Install npm packages
$ npm install
- Run gulp build task
$ gulp build
- Run build script
$ npm run build
- Your application is now in the
dist/
folder - Create a shortcut to
electronizr.exe
in the windows startup folder (C:\Users\<your-username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
) to run the application on windows logon
- Search while typing
- Launch a program by hitting
Enter
- Launch shell commands with a
>
prefix- e.g.
>ipconfig /all
- e.g.
- Open a web URL with your default web browser
- e.g.
google.com
- e.g.
- Use Google search function with a
g:
prefix- e.g.
g:how can i exit vi
- e.g.
- Use Wikipedia search function with a
wiki:
prefix- e.g.
wiki:nissan gtr
- e.g.
- Open Folder or Files with entering a file path
- e.g.
C:\temp
orC:\temp\myphoto.jpg
- e.g.
- Different color themes:
- Dark
- Light
- 'Default Windows 10 like'
{
"theme": "win10",
"maxResultItems": 10,
"folders": [
"C:\\Users\\<your-username>\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu",
"C:\\Users\\ProgramData\\Microsoft\\Start Menu"
],
"webSearches": [
{
"name": "Google",
"prefix": "g",
"url": "google.com/search?q=",
"fontAwesomeIconClass": "fa-google"
},
{
"name": "Wikipedia",
"prefix": "w",
"url": "wikipedia.org/w/?search=",
"fontAwesomeIconClass": "fa-wikipedia-w"
},
{
"name": "YouTube",
"prefix": "yt",
"url": "youtube.com/results?search_query=",
"fontAwesomeIconClass": "fa-youtube"
},
{
"name": "DuckDuckGo",
"prefix": "d",
"url": "duckduckgo.com/?q="
}
]
}
Just modify the dist/config.json
file.
If there is no config file run the application once, it should create one.
- Options:
- theme:
[light, dark, win10]
- maxResultItems:
[1-10]
- foldes:
[valid folder paths]
- theme:
Command | Description |
---|---|
ezr:reload | Rescan of all Startmenu folders |
ezr:config | Open config file |
ezr:dark-theme | Load dark theme |
ezr:light-theme | Load light theme |
ezr:win10-theme | Load Windows 10 theme |
exit | Exit the application |
- Execution for all shell commands
- Output will be displayed in the main application window
- Favorite Programs will be listed higher in the search result
- More user customization
- custom color theme
- custom folders to search + fileextensions
- custom search engines
- custom shortcuts
- Changing color theme sometimes messes up the styling
- If that happens you have to exit the application and start it again. This should fix it.