mirror of https://gitlab.com/dabruh/dotfiles.git
Fix broken window criteria matchin
This commit is contained in:
parent
f9e0d6565e
commit
ba39b200d0
|
@ -1,6 +1,6 @@
|
||||||
# Float the following windows
|
# Float the following windows
|
||||||
for_window [class="Tor Browser"] floating enable
|
for_window [class="Tor Browser"] floating enable
|
||||||
for_window [class="Alacritty"][instance="calculator"] floating enable
|
for_window [class="Alacritty"][title="calculator"] floating enable
|
||||||
|
|
||||||
# Start screenshot capture
|
# Start screenshot capture
|
||||||
bindsym $mod+Ctrl+s exec "$screenshot_cmd"
|
bindsym $mod+Ctrl+s exec "$screenshot_cmd"
|
||||||
|
@ -13,11 +13,11 @@ bindsym $mod+Ctrl+Return exec "$file_cmd"
|
||||||
|
|
||||||
# gtranslate through dmenu
|
# gtranslate through dmenu
|
||||||
bindsym $mod+Ctrl+t exec dmenugtranslate
|
bindsym $mod+Ctrl+t exec dmenugtranslate
|
||||||
for_window [class="Alacritty"][instance="translation"] floating enable
|
for_window [class="Alacritty"][title="translation"] floating enable
|
||||||
|
|
||||||
# emoji selection through dmenu
|
# emoji selection through dmenu
|
||||||
bindsym $mod+Ctrl+e exec dmenuunicode
|
bindsym $mod+Ctrl+e exec dmenuunicode
|
||||||
|
|
||||||
# Random Bible verse
|
# Random Bible verse
|
||||||
bindsym $mod+Ctrl+Shift+b exec randverse
|
bindsym $mod+Ctrl+Shift+b exec randverse
|
||||||
for_window [class="Alacritty"][instance="bible"] floating enable
|
for_window [class="Alacritty"][title="bible"] floating enable
|
||||||
|
|
|
@ -9,7 +9,7 @@ set $lock_after_min 1
|
||||||
set $lock_notify_sec 10
|
set $lock_notify_sec 10
|
||||||
set $screenshot_cmd flameshot gui
|
set $screenshot_cmd flameshot gui
|
||||||
set $file_cmd alacritty -e ranger
|
set $file_cmd alacritty -e ranger
|
||||||
set $calc_cmd alacritty --class calculator -e bc -l
|
set $calc_cmd alacritty --title calculator -e bc -l
|
||||||
|
|
||||||
set $browser firefox
|
set $browser firefox
|
||||||
set $terminal alacritty
|
set $terminal alacritty
|
||||||
|
|
|
@ -11,4 +11,4 @@ CHAPTERS="$(cut -d' ' -f1 $BIBLE | grep -o "^${BOOK}[[:digit:]]*" | uniq)"
|
||||||
CHAPTER="$(xargs -n 1 <<<"$CHAPTERS" | dmenu -i -l 30 -p "$BOOK chapter")"
|
CHAPTER="$(xargs -n 1 <<<"$CHAPTERS" | dmenu -i -l 30 -p "$BOOK chapter")"
|
||||||
echo "Chose chapter: '$CHAPTER'."
|
echo "Chose chapter: '$CHAPTER'."
|
||||||
|
|
||||||
alacritty --class translation -e bash -c "vim <(grep '^${CHAPTER}:' $BIBLE)"
|
alacritty --title bible -e bash -c "vim <(grep '^${CHAPTER}:' $BIBLE)"
|
||||||
|
|
|
@ -46,4 +46,4 @@ fi
|
||||||
echo "$translation"
|
echo "$translation"
|
||||||
printf '%s' "$translation" | xclip -selection clipboard
|
printf '%s' "$translation" | xclip -selection clipboard
|
||||||
notify-send "Translation from $from_code to $to_code copied to clipboard." &
|
notify-send "Translation from $from_code to $to_code copied to clipboard." &
|
||||||
alacritty --class translation -e bash -c "echo '$translation' | less" &
|
alacritty --title translation -e bash -c "echo '$translation' | less" &
|
||||||
|
|
|
@ -12,4 +12,4 @@ VERSE="$(sed -n "${LINE}p" "$BIBLE")"
|
||||||
echo "$VERSE"
|
echo "$VERSE"
|
||||||
printf '%s' "$VERSE" | xclip -selection clipboard
|
printf '%s' "$VERSE" | xclip -selection clipboard
|
||||||
notify-send "Bible verse copied to clipboard." &
|
notify-send "Bible verse copied to clipboard." &
|
||||||
alacritty --class bible -e bash -c "echo '$VERSE' | less" &
|
alacritty --title bible -e bash -c "echo '$VERSE' | less" &
|
||||||
|
|
Loading…
Reference in New Issue