summaryrefslogtreecommitdiffstats
path: root/.local/bin/mixer-set
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/mixer-set')
-rwxr-xr-x.local/bin/mixer-set6
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/mixer-set b/.local/bin/mixer-set
index 3979ff2..2f905ca 100755
--- a/.local/bin/mixer-set
+++ b/.local/bin/mixer-set
@@ -62,7 +62,7 @@ sub main {
}
$curr_vol = `$curr_vol_cmd`;
chomp $curr_vol;
- notify(' ' . $curr_vol);
+ notify('[vol] ' . $curr_vol);
exit;
}
elsif ($ARGV[0] eq "toggle") {
@@ -85,7 +85,7 @@ sub main {
);
};
}
- notify(' muted');
+ notify('[vol] muted');
}
else {
open(my $fh, '<:encoding(UTF-8)', $tmp_file);
@@ -104,7 +104,7 @@ sub main {
);
};
}
- notify(' ' . $curr_vol);
+ notify('[vol] ' . $curr_vol);
}
exit;
}