Initial commit. I'm fixing the readme RN!
[danixland-rofi.git] / scripts / danixland-utilsmenu.sh
CommitLineData
6e5a5ccb 1#!/bin/bash
2
3rofi_command="rofi -theme danixland/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