diff --git a/.local/bin/etc/screen_capture/record_replay_save b/.local/bin/etc/screen_capture/record_replay_save index 4341c8c..28b3b63 100755 --- a/.local/bin/etc/screen_capture/record_replay_save +++ b/.local/bin/etc/screen_capture/record_replay_save @@ -1,3 +1,3 @@ #!/bin/sh -killall -SIGUSR1 gpu-screen-recorder && notify-send 'Screen record' 'Replay saved' +killall -SIGUSR1 gpu-screen-recorder && notify-send -u low 'Screen record' 'Replay saved' diff --git a/.local/bin/etc/screen_capture/record_replay_start b/.local/bin/etc/screen_capture/record_replay_start index a1f26a4..69404a2 100755 --- a/.local/bin/etc/screen_capture/record_replay_start +++ b/.local/bin/etc/screen_capture/record_replay_start @@ -11,4 +11,4 @@ lenght=20 output="$HOME/downloads" gpu-screen-recorder -w $window -f $fps -a $audio_1 -a $audio_2 -c $format -k $v_codec -ac $a_codec -r $lenght -o $output & -notify-send 'Screen record' 'Replay started' +notify-send -u low 'Screen record' 'Replay started' diff --git a/.local/bin/etc/screen_capture/record_start b/.local/bin/etc/screen_capture/record_start index 6687b0e..331e21b 100755 --- a/.local/bin/etc/screen_capture/record_start +++ b/.local/bin/etc/screen_capture/record_start @@ -10,4 +10,4 @@ a_codec="opus" output="$HOME/downloads/recording-$(date '+%Y-%m-%d_%H-%M-%S').$format" gpu-screen-recorder -w $window -c $format -k $v_codec -ac $a_codec -f $fps -a $audio_1 -a $audio_2 -o $output & -notify-send 'Screen record' 'Recording started' +notify-send -u low 'Screen record' 'Recording started' diff --git a/.local/bin/etc/screen_capture/record_stop b/.local/bin/etc/screen_capture/record_stop index eedc48b..5806b77 100755 --- a/.local/bin/etc/screen_capture/record_stop +++ b/.local/bin/etc/screen_capture/record_stop @@ -1,3 +1,3 @@ #!/bin/sh -killall -SIGINT gpu-screen-recorder && notify-send 'Screen record' 'Recording stopped' +killall -SIGINT gpu-screen-recorder && notify-send -u low 'Screen record' 'Recording stopped'