aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2024-07-06 20:40:56 +0100
committerJustine Smithies <justine@smithies.me.uk>2024-07-06 20:40:56 +0100
commit16d0905e7a2a3ffc0c1074c01738de8a321a32a5 (patch)
treecc36fcb55a8784036dd61c7e692bd3362fc70ee3 /.config
parente66eb551bb221b9ab91080d9f5fde7ea459a2bc1 (diff)
Remove unused echo's
Diffstat (limited to '.config')
-rwxr-xr-x.config/eww/scripts/start.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/.config/eww/scripts/start.sh b/.config/eww/scripts/start.sh
index 5d46693..1ba0aa2 100755
--- a/.config/eww/scripts/start.sh
+++ b/.config/eww/scripts/start.sh
@@ -1,8 +1,7 @@
#!/bin/bash
focusactivetag() {
- export arg="$1"
- echo "Arg: "$arg
+ export arg="$1"
# Focus the lowest active tag
num=$(river-bedload -print outputs | jq -r '.['$arg'] | select(.).view_tags')
b=0
@@ -17,7 +16,6 @@ focusactivetag() {
let b=b+1
if [[ $temp -eq 1 ]]
then
- echo $b
riverctl set-focused-tags $((1 << ($b - 1)))
return
fi