Files
superior_dotfiles/private_dot_local/bin/executable_start_coding.sh

13 lines
360 B
Bash

#!/bin/bash
dir=$(find ~/Dokumenty/kodowanie/ -maxdepth 2 -type d ! -path '.*' | fzf)
if [[ -n $dir ]]; then
echo "You choose $dir"
hyprctl dispatch exec [workspace 5] kitty $dir
hyprctl dispatch exec [workspace 5] kitty $dir
hyprctl dispatch exec [workspace 5] kitty yazi $dir
else
echo "No reasonable directory selected, bye bye :P"
fi