Skip to content

TatranskiDravci/quickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

quickstart

Configure

Edit keys and processes in quickstart:

keyX="some byte"

procX() {
    # your custom process here
    pkill terminator
}

Add process entry to switch-case:

...
    case $byte in:
        ...
        $keyX)
            procX &
            ./terminator $!
            ;;
        ...

Example:

key1="a"

proc1() {
    echo "a"
    pkill terminator
}

...
    case $byte in:
        ...
        $key1)
            proc1 &
            ./terminator $!
            ;;
        ...

Run

./quickstart

Any of the smaller four buttons can be used to start a process. When starting quickstart through integrated terminal or ssh, any character available on the keyboard can be used. When the middle button is pressed (this corresponds to a \n character and is handled by terminator), the process gets killed.

About

A flight-control utility for FLL-td

Resources

Stars

Watchers

Forks

Languages