Updates
This commit is contained in:
parent
037e8560f4
commit
2cbed9492b
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,6 +3,7 @@
|
||||||
*.pid
|
*.pid
|
||||||
*.tmp
|
*.tmp
|
||||||
*.secret
|
*.secret
|
||||||
|
fishd.tmp.*
|
||||||
|
|
||||||
# TODO: should be unnecessary once color generation is homegrown
|
# TODO: should be unnecessary once color generation is homegrown
|
||||||
/colors/gen/vendor
|
/colors/gen/vendor
|
||||||
|
|
|
@ -233,6 +233,12 @@ super + w
|
||||||
super + shift + v
|
super + shift + v
|
||||||
sh -c 'kill -USR1 $(cat "/var/run/user/$UID/polybar-mic-script.sh.pid")'
|
sh -c 'kill -USR1 $(cat "/var/run/user/$UID/polybar-mic-script.sh.pid")'
|
||||||
|
|
||||||
|
super + shift + e
|
||||||
|
rofimoji --use-clipboard --rofi-args='--sort -sorting-method fzf'
|
||||||
|
|
||||||
|
super + shift + p
|
||||||
|
rofi-pass
|
||||||
|
|
||||||
# close the current application
|
# close the current application
|
||||||
super + c
|
super + c
|
||||||
bspc node -c
|
bspc node -c
|
||||||
|
|
|
@ -94,3 +94,5 @@ rofi.bw: window_border
|
||||||
rofi.color-enabled: true
|
rofi.color-enabled: true
|
||||||
rofi.monitor: -4
|
rofi.monitor: -4
|
||||||
rofi.width: 600
|
rofi.width: 600
|
||||||
|
rofi.sort: true
|
||||||
|
rofi.sorting-method: fzf
|
||||||
|
|
|
@ -8,7 +8,7 @@ font_features iosevka-lyte -liga -dlig -calt
|
||||||
|
|
||||||
font_size 11.0
|
font_size 11.0
|
||||||
adjust_line_height 0
|
adjust_line_height 0
|
||||||
window_padding_width 5.0
|
window_padding_width 10.0
|
||||||
window_margin_width 0.0
|
window_margin_width 0.0
|
||||||
|
|
||||||
clear_all_shortcuts yes
|
clear_all_shortcuts yes
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
rofi -combi-modi run,window -show combi -modi combi "$@"
|
rofi -combi-modi run,window -show combi -modi combi -sorting-method fzf --sort "$@"
|
||||||
|
|
8
bin/fzfemoji
Executable file
8
bin/fzfemoji
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
op="${1:--c}"; shift &>/dev/null
|
||||||
|
cd ~/.password-store || ( echo "Could not cd to ~/.password-store" && exit 1 )
|
||||||
|
r="$(< "$HOME/.emoji.txt" fzf --height 40%)"
|
||||||
|
echo "Selected $r (it's in your clipboard)"
|
||||||
|
<<< $r awk '$0=$1' | tr -d '\n' | clip
|
||||||
|
cd - || return 1
|
8
bin/fzfp
Executable file
8
bin/fzfp
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
op="${1:--c}"; shift &>/dev/null
|
||||||
|
cd ~/.password-store || ( echo "Could not cd to ~/.password-store" && exit 1 )
|
||||||
|
pp="$(fd gpg | sd ".gpg" "" | fzf --height 40%)"
|
||||||
|
echo pass $op $pp
|
||||||
|
pass "$op" "$@" "$pp"
|
||||||
|
cd - || return 1
|
|
@ -49,6 +49,9 @@ pacaur --needed -S \
|
||||||
libinput libinput-gestures `# Trackpad Control` \
|
libinput libinput-gestures `# Trackpad Control` \
|
||||||
xcape `# Escape Better` \
|
xcape `# Escape Better` \
|
||||||
dunst `# Desktop Notifications` \
|
dunst `# Desktop Notifications` \
|
||||||
|
rofimoji `# Emoji Picker` \
|
||||||
--noconfirm --noedit
|
--noconfirm --noedit
|
||||||
|
|
||||||
|
curl -L -o "$HOME/.emoji.txt" https://lyte.dev/uploads/emoji.txt
|
||||||
|
|
||||||
# TODO: recommend systemd services?
|
# TODO: recommend systemd services?
|
||||||
|
|
Reference in a new issue