Skip to content
This repository has been archived by the owner on Oct 23, 2022. It is now read-only.

bakapear/pew

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEPRECATED

No longer working on this. Might be heavily outdated!

pew

preview image 1

alt+space launcher built with electron.

Program runs in system-tray to listen for the alt+space shortcut and will open a small input field where you can start your steam games (or custom programs). It gets them from your steamapps folder which u might want to specify in the config file. Since v1.2.0 it includes an explorer file search and special tasks (math, google ...) aswell so it's not for steam only anymore. Bugs are expected because this is still in development but from my testing I found nothing disturbing yet.

Download the latest version here

Special Stuff

> - Steam Game Search
# - Code Search
? - Urban Dictionary Search
/ - Google Web Search (experimental)
! - Google Image Search
@ - Discord Channel Messages

Configuration / Custom Programs

After installing pew, navigate to %appdata%/pew where you'll find a config.json file containing some customization settings. You can add custom programs to the search index or give nicknames to existing or custom programs. There is also a discord object which when given information correctly will enable discord channel messages. (Lookup how to get these.)

{
    "path": "C:/Program Files (x86)/Steam/steamapps",
    "nicks": {
        "440": [
            "tf2"
        ],
        "730": [
            "csgo"
        ]
    },
    "custom": [
        {
            "name": "pew configuration",
            "nick": [
                "cfg",
                "config"
            ],
            "id": "%appdata%/pew/config.json"
        },
        {
            "name": "Google Chrome",
            "nick": [
                "web",
                "browser",
                "internet"
            ],
            "id": "chrome"
        },
        {
            "name": "Editor",
            "nick": [
                "editor",
                "notepad",
                "text"
            ],
            "id": "C:/WINDOWS/system32/notepad.exe"
        }
    ],
    "discord": {
        "token": "dxik93kekxIK3koSKdcklx02o23lddlelele",
        "guildId": "321389012839123"
    }
}