my dotz
2
fork

Configure Feed

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

replace jira-fuzzel, move to zora, correct conf

+28 -12
+2 -2
.config/sway/config
··· 48 48 bindsym Delete exec makoctl dismiss 49 49 bindsym $mod+Delete exec makoctl dismiss --all 50 50 bindsym Mod1+Shift+Return Return 51 - bindsym $mod+d exec fuzzel 52 - bindsym $mod+Shift+p exec --no-startup-id pa-fuzzel 51 + bindsym $mod+d exec bemenu-run -b 52 + bindsym $mod+Shift+p exec --no-startup-id pa-bemenu 53 53 bindsym $mod+Shift+c reload 54 54 bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit' 55 55
+1 -1
.config/sway/zora
··· 12 12 for_window [class="Firefox"] inhibit_idle fullscreen 13 13 for_window [class="Chromium"] inhibit_idle fullscreen 14 14 15 - bindsym $mod+Shift+i exec jira-fuzzel 15 + bindsym $mod+Shift+i exec jira-bemenu 16 16 bindsym $mod+Prior exec vpn 17 17 bindsym $mod+Next exec vpn kill 18 18
-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"
+15
bin/pa-bemenu
··· 1 + #!/bin/sh 2 + # 3 + # prompt for a password via bemenu 4 + # then type the selected password 5 + # 6 + # deps: 7 + # - wtype 8 + # - bemenu 9 + # - pa 10 + 11 + cd "${PA_DIR:-$HOME/.local/share/pa}" 12 + password_files="$(find * -type f | grep -v '/.git')" 13 + password=$(printf '%s\n' "$password_files" | sed 's/.age//' | bemenu -b "$@") 14 + 15 + pa show "$password" | head -n 1 | tr -d '\n' | wtype -
+10
bin/zora/jira-bemenu
··· 1 + #!/bin/sh -e 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 "" | bemenu -b | tr '[a-z]' '[A-Z]') 8 + [ "$jira_id" = "" ] && exit 1 9 + 10 + xdg-open "https://jira.internal.digitalocean.com/browse/$jira_id"