7 řádků
164 B
Bash
Spustitelný soubor
7 řádků
164 B
Bash
Spustitelný soubor
#!/usr/bin/env bash
|
|
|
|
|
|
FOLDER="$HOME/.dotfiles/bin/.bin/screenlayouts/"
|
|
script=$(ls "$FOLDER" | sed 's/\.sh$//' | rofi -dmenu -p "Layout" )
|
|
"${FOLDER}${script}.sh"
|
|
|