summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-03-08 11:49:33 +0000
committerUrbain Vaes <urbain@vaes.uk>2016-03-08 11:49:33 +0000
commit164e54bafc7c6450ce71f9571d5b774cff310557 (patch)
tree96c6ab2409041351a03728ed9687b100d93bf34e
parentd8c21e3fb1e0380c3c61265ea647b5365574059a (diff)
Add Khoi's scripts
-rw-r--r--.i3/config2
-rwxr-xr-xbin/rename_workspace12
-rwxr-xr-xbin/tmux_attach9
3 files changed, 23 insertions, 0 deletions
diff --git a/.i3/config b/.i3/config
index 0d5e9e6..7429767 100644
--- a/.i3/config
+++ b/.i3/config
@@ -187,3 +187,5 @@ bindsym XF86AudioPlay exec $HOME/bin/touchpad
# font pango:DejaVu Sans Mono 10
bindsym F1 exec --no-startup-id feh --bg-fill --randomize /usr/share/backgrounds
bindsym $mod+semicolon exec --no-startup-id $HOME/bin/run
+bindsym $mod+z exec --no-startup-id $HOME/bin/tmux_attach
+bindsym $mod+e exec --no-startup-id $HOME/bin/rename_workspace
diff --git a/bin/rename_workspace b/bin/rename_workspace
new file mode 100755
index 0000000..7636fd2
--- /dev/null
+++ b/bin/rename_workspace
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+workspace=$(i3-msg -t get_outputs | grep -Po '"current_workspace":"[^\"]*"' | sed 's/"current_workspace":"\([^"]\+\)"/\1/g')
+number=$(echo "${workspace//[!0-9]}")
+
+new_name=$(zenity --entry --title="Rename workspace" --entry-text "$workspace")
+if [[ "$new_name" != *:* ]]; then
+ new_name="$number:$new_name"
+fi
+
+echo $new_name
+exec i3-msg rename workspace to "$new_name"
diff --git a/bin/tmux_attach b/bin/tmux_attach
new file mode 100755
index 0000000..564e3bb
--- /dev/null
+++ b/bin/tmux_attach
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+SESSIONS=$(tmux list-sessions | cut -d':' -f1)
+
+SESSION=$(echo "$SESSIONS" | dmenu -i -p "Session:" | tr -d '[[:space:]]')
+
+[[ -n $SESSION ]] || exit
+
+urxvt -e zsh -c "tmux new-session -A -s $SESSION"