diff options
-rw-r--r-- | .config/dunst/dunstrc | 6 | ||||
-rwxr-xr-x | .local/bin/dmscrot | 8 |
2 files changed, 5 insertions, 9 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index ce7323e..d49a8e1 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -113,9 +113,9 @@ # NOTE: It might be helpful to run dunst -print in a terminal in order # to find fitting options for rules. -[espeak] # >shutup - summary = "*" # >shutup - script = /home/jozan/.local/bin/dunst_espeak.sh # >shutup +#[espeak] # >shutup +# summary = "*" # >shutup +# script = /home/jozan/.local/bin/dunst_espeak.sh # >shutup #[script-test] # summary = "*script*" diff --git a/.local/bin/dmscrot b/.local/bin/dmscrot index 0503abe..6029256 100755 --- a/.local/bin/dmscrot +++ b/.local/bin/dmscrot @@ -72,18 +72,17 @@ sub action my $file_name; chomp $var; + $file_name = file_name(); if ($var eq ${+LIST}[0]) { - $file_name = file_name(); system( SCREENSHOT_PATH, $file_name, '-q', '100', '-s', - '-l', 'mode=classic,style=dash,width=2,color=#990000' + '-l', 'mode=edge,width=2,color=#990000' ); } elsif ($var eq ${+LIST}[1]) { - $file_name = file_name(); system( SCREENSHOT_PATH, $file_name, @@ -92,7 +91,6 @@ sub action ); } elsif ($var eq ${+LIST}[2]) { - $file_name = file_name(); system( SCREENSHOT_PATH, $file_name, @@ -100,7 +98,6 @@ sub action ); } elsif ($var eq ${+LIST}[3]) { - $file_name = file_name(); system( SCREENSHOT_PATH, $file_name, @@ -109,7 +106,6 @@ sub action ); } elsif ($var eq ${+LIST}[4]) { - $file_name = file_name(); system( SCREENSHOT_PATH, $file_name, |