summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xclerk2
-rw-r--r--install.sh1
2 files changed, 2 insertions, 1 deletions
diff --git a/clerk b/clerk
index fdc7d2e..86ed46c 100755
--- a/clerk
+++ b/clerk
@@ -100,9 +100,11 @@ sub main {
system('tmux', 'new-window', '-t', 'music', '-n', 'playlists', $self, '-p', '-f');
system('tmux', 'new-window', '-t', 'music', '-n', 'queue', $player);
system('tmux', 'attach', '-t', 'music');
+ system('tmux', 'select-window', '-t', 'queue')
}
else {
system('tmux', 'attach', '-t', 'music');
+ system('tmux', 'select-window', '-t', 'queue')
}
}
}
diff --git a/install.sh b/install.sh
index 20042bf..f93a817 100644
--- a/install.sh
+++ b/install.sh
@@ -1,7 +1,6 @@
#!/usr/bin/env bash
dependencies=(
- "Config::Simple"
"inc::Module::Install"
"Data::MessagePack"
"File::Slurper"