screenmap (ab2043b81eaba0d7d7769b4a58b2b6d17bc464a3) | screenmap (89498fdf4174b08bb67d684d14886539aff698b4) |
---|---|
1#!/bin/sh 2#- 3# Copyright (c) 2012 Devin Teske 4# All Rights Reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 54 unchanged lines hidden (view full) --- 63 64 size=$( eval f_dialog_menu_size \ 65 \"\$DIALOG_TITLE\" \ 66 \"\$DIALOG_BACKTITLE\" \ 67 \"\$prompt\" \ 68 \"\$hline\" \ 69 $menu_list ) 70 | 1#!/bin/sh 2#- 3# Copyright (c) 2012 Devin Teske 4# All Rights Reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 54 unchanged lines hidden (view full) --- 63 64 size=$( eval f_dialog_menu_size \ 65 \"\$DIALOG_TITLE\" \ 66 \"\$DIALOG_BACKTITLE\" \ 67 \"\$prompt\" \ 68 \"\$hline\" \ 69 $menu_list ) 70 |
71 eval $DIALOG \ | 71 local dialog_menu 72 dialog_menu=$( eval $DIALOG \ |
72 --clear --title \"\$DIALOG_TITLE\" \ 73 --backtitle \"\$DIALOG_BACKTITLE\" \ 74 --hline \"\$hline\" \ 75 --ok-label \"\$msg_ok\" \ 76 --cancel-label \"\$msg_cancel\" \ 77 --menu \"\$prompt\" $size \ 78 $menu_list \ | 73 --clear --title \"\$DIALOG_TITLE\" \ 74 --backtitle \"\$DIALOG_BACKTITLE\" \ 75 --hline \"\$hline\" \ 76 --ok-label \"\$msg_ok\" \ 77 --cancel-label \"\$msg_cancel\" \ 78 --menu \"\$prompt\" $size \ 79 $menu_list \ |
79 2> "$DIALOG_TMPDIR/dialog.menu.$$" | 80 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 81 ) 82 local retval=$? 83 setvar DIALOG_MENU_$$ "$dialog_menu" 84 return $retval |
80} 81 82############################################################ MAIN 83 84# Incorporate rc-file if it exists 85[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc" 86 87# --- 55 unchanged lines hidden --- | 85} 86 87############################################################ MAIN 88 89# Incorporate rc-file if it exists 90[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc" 91 92# --- 55 unchanged lines hidden --- |