summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/hypr/hypridle.conf2
-rw-r--r--.config/rofi/config.rasi2
-rwxr-xr-x.local/bin/movie2
3 files changed, 3 insertions, 3 deletions
diff --git a/.config/hypr/hypridle.conf b/.config/hypr/hypridle.conf
index b0a8883..ccdeca1 100644
--- a/.config/hypr/hypridle.conf
+++ b/.config/hypr/hypridle.conf
@@ -11,7 +11,7 @@ listener {
}
listener {
- timeout = 300 # 5min
+ timeout = 600 # 10min
on-timeout = loginctl lock-session # lock screen when timeout has passed
}
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi
index 5f5a47b..8476280 100644
--- a/.config/rofi/config.rasi
+++ b/.config/rofi/config.rasi
@@ -190,7 +190,7 @@ prompt {
text-color: @normal-foreground;
}
configuration {
- matching: "fuzzy";
+ // matching: "fuzzy";
case-sensitive: false;
}
textbox-prompt-colon {
diff --git a/.local/bin/movie b/.local/bin/movie
index 204cbe6..4ceb432 100755
--- a/.local/bin/movie
+++ b/.local/bin/movie
@@ -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\)")"