hypridle config changes
This commit is contained in:
parent
3ff9631193
commit
ecb14b548e
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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\)")"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue