Compare commits

...

3 commits

Author SHA1 Message Date
af6b859b2b
Add window rules for Signal desktop 2025-08-13 12:27:40 +10:00
d59ff75299
Add yazi keybinds 2025-08-13 12:26:21 +10:00
72dba5c923
Disable border background on all windows 2025-08-13 12:25:47 +10:00
3 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,8 @@ source ~/.config/environment.sh
if status is-interactive if status is-interactive
set -g fish_greeting set -g fish_greeting
bind alt-f yazi
# Aliases # Aliases
alias cat="bat" alias cat="bat"
alias ls="eza --group-directories-first -x" alias ls="eza --group-directories-first -x"

View file

@ -107,6 +107,7 @@ window-rule {
// Block out windows from screen capture // Block out windows from screen capture
window-rule { window-rule {
match app-id="discord" match app-id="discord"
match app-id="Signal"
block-out-from "screencast" block-out-from "screencast"
} }
// Display Steam notifications in corner of the screen // Display Steam notifications in corner of the screen
@ -123,6 +124,7 @@ window-rule {
// Open windows in chat workspace // Open windows in chat workspace
window-rule { window-rule {
match app-id="discord" match app-id="discord"
match app-id="Signal"
open-on-workspace "chat" open-on-workspace "chat"
} }
// Open windows in games workspace // Open windows in games workspace
@ -167,6 +169,8 @@ window-rule {
window-rule { window-rule {
match is-active=false match is-active=false
opacity 0.9 opacity 0.9
}
window-rule {
draw-border-with-background false draw-border-with-background false
} }
window-rule { window-rule {

View file

@ -47,3 +47,8 @@ desc = "Go to Videos"
on = ["g", "v", "r"] on = ["g", "v", "r"]
run = "cd ~/Videos/Recording" run = "cd ~/Videos/Recording"
desc = "Go to Recordings" desc = "Go to Recordings"
# yank and copy to clipboard
[[mgr.prepend_keymap]]
on = "y"
run = [ 'shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list', "yank" ]