hypridle config changes
This commit is contained in:
parent
3ff9631193
commit
ecb14b548e
|
|
@ -11,7 +11,7 @@ listener {
|
|||
}
|
||||
|
||||
listener {
|
||||
timeout = 300 # 5min
|
||||
timeout = 600 # 10min
|
||||
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -190,7 +190,7 @@ prompt {
|
|||
text-color: @normal-foreground;
|
||||
}
|
||||
configuration {
|
||||
matching: "fuzzy";
|
||||
// matching: "fuzzy";
|
||||
case-sensitive: false;
|
||||
}
|
||||
textbox-prompt-colon {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
if [ -t 0 ]; then
|
||||
filename="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" -printf "%f\n" | sort | fzf)"
|
||||
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
|
||||
|
||||
filepath="$(find ~/media/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)")"
|
||||
|
|
|
|||
Loading…
Reference in New Issue