Browse Source

Use zenity for selecting mesh blog options

Bob Mottram 7 years ago
parent
commit
7cb7225c2f
1 changed files with 2 additions and 13 deletions
  1. 2
    13
      src/freedombone-mesh-blog

+ 2
- 13
src/freedombone-mesh-blog View File

222
 }
222
 }
223
 
223
 
224
 function menu_blog {
224
 function menu_blog {
225
-    data=$(tempfile 2>/dev/null)
226
-    trap "rm -f $data" 0 1 2 5 15
227
-    dialog --backtitle $"Freedombone Mesh" \
228
-           --title $"Blogging" \
229
-           --radiolist $"Choose an operation:" 19 50 12 \
230
-           1 $"View a blog" on \
231
-           2 $"New blog entry" off \
232
-           3 $"Edit the previous blog entry" off \
233
-           4 $"Delete the previous blog entry" off \
234
-           5 $"Change theme" off \
235
-           6 $"Exit" off 2> $data
225
+    data=$(zenity --list 1 $"View a blog" 2 $"New blog entry" 3 $"Edit the previous blog entry" 4 $"Delete the previous blog entry" 5 $"Change theme" --column="id" --title $"Blogging" --column=$"Choose an operation:" --hide-column=1 --print-column=1 --height=250)
236
     sel=$?
226
     sel=$?
237
     case $sel in
227
     case $sel in
238
         1) exit 1;;
228
         1) exit 1;;
239
         255) exit 1;;
229
         255) exit 1;;
240
     esac
230
     esac
241
-    case $(cat $data) in
231
+    case $data in
242
         1) view_blog;;
232
         1) view_blog;;
243
         2) new_blog;;
233
         2) new_blog;;
244
         3) edit_blog;;
234
         3) edit_blog;;
245
         4) delete_blog;;
235
         4) delete_blog;;
246
         5) change_theme;;
236
         5) change_theme;;
247
-        6) break;;
248
     esac
237
     esac
249
 }
238
 }
250
 
239