···1515set $right l
1616# Your preferred terminal emulator
1717set $term foot
1818-# Your preferred application launcher
1919-# Note: pass the final command to swaymsg so that the resulting window can be opened
2020-# on the original workspace that the command was run on.
2121-# set $menu dmenu_path | dmenu | xargs swaymsg exec --
2222-set $launcher dmenu_path | fzf | xargs swaymsg exec --
23182419### Output configuration
2520#
···9085 bindsym $mod+Shift+q kill
91869287 # Start your launcher
9393- # bindsym $mod+d exec $menu
9494- bindsym $mod+d exec "rofi -modi drun,run -show drun"
8888+ bindsym $mod+d exec fuzzel
8989+9090+ # Jira ticket picker
9191+ bindsym $mod+Shift+i exec jira-fuzzel
95929693 # Password manager
9794 bindsym $mod+Shift+p exec --no-startup-id pa-rofi
+9
bin/jira-fuzzel
···11+#!/bin/sh
22+#
33+# this script launches fuzzel, takes a jira
44+# ticket, and opens it
55+66+# upcase because jira wants that i guess
77+jira_id=$(printf "" | fuzzel -d | tr '[a-z]' '[A-Z]')
88+99+xdg-open "https://jira.internal.digitalocean.com/browse/$jira_id"