10 lines
177 B
Bash
Executable file
10 lines
177 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
## Wizard Kit: Sensor monitoring tool
|
|
|
|
WINDOW_NAME="Hardware Sensors"
|
|
MONITOR="hw-sensors-monitor"
|
|
|
|
# Start session
|
|
tmux new-session -n "$WINDOW_NAME" "$MONITOR"
|
|
|