Files
superior_dotfiles/private_dot_local/bin/executable_start_coding.sh
Szymon P d55d471bb1 Update .config/hypr/hyprland/binds/open_apps.conf
Update .config/hypr/hyprland/rules/feh.conf
Update .config/yazi/yazi.toml
Update .local/bin/screenshots.sh
Update .local/bin/start_coding.sh
2025-06-12 12:27:21 +02:00

14 lines
386 B
Bash

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