Personal dotfiles
0
fork

Configure Feed

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

various updates

+11 -1
+6
bin/record
··· 1 + #!/bin/bash 2 + if [ $# == 1 ]; then 3 + wf-recorder -a -c libx264rgb -g "$1" -f recording.mp4 4 + else 5 + wf-recorder -a -c libx264rgb -g "$(slurp)" -f recording.mp4 6 + fi
+1 -1
kak/autoload/filetype/rust.kak
··· 62 62 add-highlighter shared/rust/code/hex-int regex \b(0x[0-9A-Fa-f_]+([ui](8|16|32|64|128|size))?)\b 1:value 63 63 add-highlighter shared/rust/code/octal-int regex \b(0o[0-7_]+([ui](8|16|32|64|128|size))?)\b 1:value 64 64 add-highlighter shared/rust/code/binary-int regex \b(0b[01_]+)([ui](8|16|32|64|128|size))?\b 1:value 65 - add-highlighter shared/rust/code/character regex ('([^'\\]|\\'|\\\\|\\u\{[0-9a-fA-F]{1,4}\})') 1:value 65 + add-highlighter shared/rust/code/character regex ('([^'\\]|\\'|\\\\|\\n|\\r|\\t|\\0|\\x[0-9A-F]{2}|\\u\{[0-9a-fA-F]{1,4}\})') 1:value 66 66 add-highlighter shared/rust/code/bool regex \b(true|false)\b 1:value 67 67 68 68 add-highlighter shared/rust/code/module regex (?:pub\s+)?mod\s+((r#)?[a-zA-Z_][a-zA-Z0-9_]*) 1:module
+4
sway/config
··· 122 122 123 123 # Reload the configuration file 124 124 bindsym $mod+Shift+r reload 125 + 126 + # Color picker 125 127 bindsym $mod+Shift+c exec grim -g "$(slurp -p)" -t ppm - | convert - -format '%[pixel:p{0,0}]' txt:- | tail -n 1 | cut -d ' ' -f 4 | wl-copy 128 + # Screenshot 126 129 bindsym $mod+Shift+s exec grim -g "$(slurp -d)" - | wl-copy 130 + 127 131 bindsym $mod+z border toggle 128 132 129 133 bindsym $mod+Shift+q exec ~/.config/sway/scripts/shutdownmenu