first push of my config files
[my-dotfiles.git] / bin / blackpearl-utilsmenu.sh
CommitLineData
fdd76fc5 1#!/bin/bash
2
3rofi_command="rofi -theme blackpearl/utilsmenu.rasi"
4
5### Options ###
6wpaper=""
7webdevel=""
8# Variable passed to rofi
9options="$wpaper\n$webdevel"
10
11chosen="$(echo -e "$options" | $rofi_command -dmenu -selected-row 1)"
12case $chosen in
13 $wpaper)
14 change_wallpaper.sh
15 ;;
16 $webdevel)
17 webdevel
18 ;;
19esac
20