hypridle config changes

This commit is contained in:
krolxon 2025-08-10 22:27:55 +05:30
parent 3ff9631193
commit ecb14b548e
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ listener {
} }
listener { listener {
timeout = 300 # 5min timeout = 600 # 10min
on-timeout = loginctl lock-session # lock screen when timeout has passed on-timeout = loginctl lock-session # lock screen when timeout has passed
} }

View File

@ -190,7 +190,7 @@ prompt {
text-color: @normal-foreground; text-color: @normal-foreground;
} }
configuration { configuration {
matching: "fuzzy"; // matching: "fuzzy";
case-sensitive: false; case-sensitive: false;
} }
textbox-prompt-colon { textbox-prompt-colon {

View File

@ -4,7 +4,7 @@
if [ -t 0 ]; then if [ -t 0 ]; then
filename="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" -printf "%f\n" | sort | fzf)" filename="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" -printf "%f\n" | sort | fzf)"
else else
filename="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" -printf "%f\n" | sort | dmenu -l 25)" filename="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" -printf "%f\n" | sort | rofi -case-smart -matching "fuzzy" -dmenu -l 25)"
fi fi
filepath="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)")" filepath="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)")"