mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 08:37:12 +00:00
7 lines
134 B
Bash
Executable file
7 lines
134 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SESSION_NAME=wttr.in
|
|
SCREENRC_PATH=$(dirname $(dirname "$0"))/screenrc
|
|
|
|
screen -dmS "$SESSION_NAME" -c "$SCREENRC_PATH"
|
|
|