summaryrefslogtreecommitdiff
path: root/record.fish
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-04 18:24:02 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-04 18:24:02 +1100
commitad791dfd76bca340ba584f736c6d30ea1cced504 (patch)
treee99b609ac0f37fdf4c78531e9c0ea3ab99262fe5 /record.fish
parentinstall: use systemd services for shell and safeeyes (diff)
downloadcaelestia-cli-ad791dfd76bca340ba584f736c6d30ea1cced504.tar.gz
caelestia-cli-ad791dfd76bca340ba584f736c6d30ea1cced504.tar.bz2
caelestia-cli-ad791dfd76bca340ba584f736c6d30ea1cced504.zip
feat: uwsm app -> app2unit
Also xdg-open -> app2unit
Diffstat (limited to '')
-rwxr-xr-xrecord.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/record.fish b/record.fish
index 7d76d52..c859d89 100755
--- a/record.fish
+++ b/record.fish
@@ -83,7 +83,7 @@ if pgrep wf-recorder > /dev/null
dbus-send --session --dest=org.freedesktop.FileManager1 --type=method_call /org/freedesktop/FileManager1 org.freedesktop.FileManager1.ShowItems array:string:"file://$new_recording_path" string:'' \
|| xdg-open (dirname $new_recording_path)
case 'save'
- set -l save_file (uwsm app -- zenity --file-selection --save --title='Save As')
+ set -l save_file (app2unit -- zenity --file-selection --save --title='Save As')
test -n "$save_file" && mv $new_recording_path $save_file || warn 'No file selected'
end
else