diff options
author | Joe <bousset.rudy@gmail.com> | 2022-05-10 14:01:45 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-05-10 14:01:45 +0200 |
commit | 7f1ad3a9c825b0b4f1c2df2ee6d54e89bca79a5f (patch) | |
tree | 3c6e53b2b22c7ee1622ff1a8b982a778250a87d0 | |
parent | update (diff) | |
download | dotfiles-bsd-7f1ad3a9c825b0b4f1c2df2ee6d54e89bca79a5f.tar.gz dotfiles-bsd-7f1ad3a9c825b0b4f1c2df2ee6d54e89bca79a5f.tar.bz2 dotfiles-bsd-7f1ad3a9c825b0b4f1c2df2ee6d54e89bca79a5f.tar.xz dotfiles-bsd-7f1ad3a9c825b0b4f1c2df2ee6d54e89bca79a5f.tar.zst dotfiles-bsd-7f1ad3a9c825b0b4f1c2df2ee6d54e89bca79a5f.zip |
update
-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, |