10 lines
248 B
Bash
Executable file
10 lines
248 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
list_windows() (
|
|
wlrctl window list
|
|
)
|
|
|
|
window=$(wlrctl window list | rofi -i -sync -dmenu -p " " -theme ~/.config/rofi/launchers-git/laptop-rbw-wayland.rasi | awk '{print $1}' | sed 's/://')
|
|
|
|
wlrctl window focus $window
|