mirror of
https://github.com/szymon-jozef/superior_dotfiles.git
synced 2026-09-07 20:20:38 +02:00
Update .config/hypr/hyprland/rules/browser.conf Update .config/hypr/hyprland/rules/feh.conf Update .config/hypr/hyprland/rules/gimp.conf Update .config/hypr/hyprland/rules/heroic.conf Update .config/hypr/hyprland/rules/lutris.conf Update .config/hypr/hyprland/rules/misc.conf Update .config/hypr/hyprland/rules/obs.conf Update .config/hypr/hyprland/rules/pavucontrol.conf Update .config/hypr/hyprland/rules/rpcs3.conf Update .config/hypr/hyprland/rules/signal.conf Update .config/hypr/hyprland/rules/spotify.conf Update .config/hypr/hyprland/rules/steam.conf Update .config/hypr/hyprland/rules/swappy.conf Update .config/hypr/hyprland/rules/vesktop.conf Update .local/bin/start_coding.sh
13 lines
365 B
Bash
13 lines
365 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 yazi $dir
|
|
hyprctl dispatch exec [workspace 5] kitty $dir
|
|
else
|
|
echo "No reasonable directory selected, bye bye :P"
|
|
fi
|