blob: b317dcf18a0213fadae40dee5087c9c3d387101d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
note() {
printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
}
all_off="$(tput sgr0)"
bold="${all_off}$(tput bold)"
blue="${bold}$(tput setaf 4)"
yellow="${bold}$(tput setaf 3)"
post_install() {
# Echo
note "======"
note "You can customize config.ini and keymaps in /usr/share/qtscrcpy/config and /usr/share/qtscrcpy/keymap"
note "You can find information in https://github.com/barry-ran/QtScrcpy"
note "======"
}
|