12 lines
228 B
Bash
Executable file
12 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
|
|
directory=$1
|
|
|
|
## ARG1 needs to be a directory
|
|
if [ ! -d $directory ]
|
|
then
|
|
echo Usage: $0 [Directory with menuitems]
|
|
exit 1
|
|
fi
|
|
|
|
$directory/$(ls --color=never -1 $directory | rofi -dmenu -p "Select screen layout")
|