my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Replace rofi with fuzzel, add jira-fuzzel

+13 -7
+4 -7
.config/sway/config
··· 15 15 set $right l 16 16 # Your preferred terminal emulator 17 17 set $term foot 18 - # Your preferred application launcher 19 - # Note: pass the final command to swaymsg so that the resulting window can be opened 20 - # on the original workspace that the command was run on. 21 - # set $menu dmenu_path | dmenu | xargs swaymsg exec -- 22 - set $launcher dmenu_path | fzf | xargs swaymsg exec -- 23 18 24 19 ### Output configuration 25 20 # ··· 90 85 bindsym $mod+Shift+q kill 91 86 92 87 # Start your launcher 93 - # bindsym $mod+d exec $menu 94 - bindsym $mod+d exec "rofi -modi drun,run -show drun" 88 + bindsym $mod+d exec fuzzel 89 + 90 + # Jira ticket picker 91 + bindsym $mod+Shift+i exec jira-fuzzel 95 92 96 93 # Password manager 97 94 bindsym $mod+Shift+p exec --no-startup-id pa-rofi
+9
bin/jira-fuzzel
··· 1 + #!/bin/sh 2 + # 3 + # this script launches fuzzel, takes a jira 4 + # ticket, and opens it 5 + 6 + # upcase because jira wants that i guess 7 + jira_id=$(printf "" | fuzzel -d | tr '[a-z]' '[A-Z]') 8 + 9 + xdg-open "https://jira.internal.digitalocean.com/browse/$jira_id"