mirror of
https://github.com/szymon-jozef/superior_dotfiles.git
synced 2026-09-07 12:10:38 +02:00
Update .config/hypr/hyprland/binds/open_apps.conf Update .config/hypr/hyprland/binds/power.conf Update .config/hypr/hyprland/binds/windows.conf Update .config/hypr/hyprland/workspaces.conf Update .config/nvim/lazy-lock.json Update .local/bin/start_coding.sh
13 lines
360 B
Bash
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 yazi $dir
|
|
hyprctl dispatch exec [workspace 5] kitty $dir
|
|
hyprctl dispatch exec [workspace 5] kitty $dir
|
|
else
|
|
echo "No reasonable directory selected, bye bye :P"
|
|
fi
|