Created
June 10, 2013 09:04
-
-
Save soohyunc/5747413 to your computer and use it in GitHub Desktop.
An example of .vic config file (a custom user setting)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#\ | |
exec wish4.2 "$0" "$@" | |
# | |
proc user_fps {val} { | |
global fps_slider | |
$fps_slider set $val | |
} | |
proc user_bps {val} { | |
global bps_slider | |
$bps_slider set $val | |
} | |
proc user_quality {val} { | |
global qscale | |
$qscale set $val | |
} | |
proc user_transmit {} { | |
global transmitButtonState transmitButton logFrameChannel | |
$transmitButton invoke | |
#destroy .b | |
} | |
proc user_hook {} { | |
checkbutton .b -text "Transmit" -relief raised -command user_transmit | |
pack .b | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment