my dotz
2
fork

Configure Feed

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

pa-rofi -> pa-fuzzel, move jira conf to zora

+13 -14
+1 -4
.config/sway/config
··· 91 91 # Start your launcher 92 92 bindsym $mod+d exec fuzzel 93 93 94 - # Jira ticket picker 95 - bindsym $mod+Shift+i exec jira-fuzzel 96 - 97 94 # Password manager 98 - bindsym $mod+Shift+p exec --no-startup-id pa-rofi 95 + bindsym $mod+Shift+p exec --no-startup-id pa-fuzzel 99 96 100 97 # Drag floating windows by holding down $mod and left mouse button. 101 98 # Resize them with right mouse button + $mod.
+2
.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 16 + 15 17 # Laptop outputs are managed automatically using kanshi 16 18 exec_always pkill kanshi; exec kanshi
+10
bin/pa-fuzzel
··· 1 + #!/bin/sh 2 + # 3 + # prompt for a password, then type the selected password 4 + 5 + cd "${PA_DIR:-$HOME/.local/share/pa}" 6 + password_files="$(find * -type f | grep -v '/.git')" 7 + password=$(printf '%s\n' "$password_files" | sed 's/.age//' | fuzzel -dmenu "$@") 8 + 9 + pa show "$password" | head -n 1 | 10 + wtype -
-10
bin/pa-rofi
··· 1 - #!/bin/sh 2 - # 3 - # prompt for a password, then type the selected password 4 - 5 - cd "${PA_DIR:-$HOME/.local/share/pa}" 6 - password_files="$(find * -type f | grep -v '/.git')" 7 - password=$(printf '%s\n' "$password_files" | sed 's/.age//' | rofi -dmenu "$@") 8 - 9 - pa show "$password" | head -n 1 | 10 - wtype -