mirror of
https://github.com/unraid/webgui.git
synced 2026-01-13 21:20:01 -06:00
6 lines
110 B
Bash
Executable File
6 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
if [[ -n $1 ]]; then
|
|
pkill ttyd
|
|
sed -ri "s/fontSize=[0-9]+/fontSize=$1/" /etc/default/ttyd
|
|
fi
|