remove texlive for now, add in steam
This commit is contained in:
parent
cde4e00d53
commit
a7409dccc5
|
@ -135,7 +135,7 @@
|
|||
;; "tracker"
|
||||
;; "tracker-miners"
|
||||
"gvfs"
|
||||
"texlive"
|
||||
;; "texlive"
|
||||
;; "texlive-pdfx"
|
||||
;; "texlive-latex-pdfx"
|
||||
"jmtpfs"
|
||||
|
@ -210,6 +210,7 @@
|
|||
"libreoffice"
|
||||
"swaylock-effects"
|
||||
"swayidle"
|
||||
"steam"
|
||||
;; "tridactyl-native"
|
||||
|
||||
;; Fonts
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
window=$(wlrctl window list | rofi -i -sync -dmenu -p " " -theme ~/.config/rofi/launchers-git/laptop-rbw-wayland.rasi)
|
||||
json=$(hyprctl clients -j)
|
||||
window=$(echo $json | jq .[].title | rofi -i -sync -dmenu -p " " -theme ~/.config/rofi/launchers-git/laptop-rbw-wayland.rasi)
|
||||
|
||||
echo $window
|
||||
|
||||
win=$(echo $window | awk '{print $1}' | sed 's/://')
|
||||
win=$(echo $json | jq ".[] | select(.title==$window).address" | sed 's/"//g')
|
||||
|
||||
echo $win
|
||||
|
||||
if [ ! -z "$win" ]
|
||||
then
|
||||
wlrctl window focus $win
|
||||
hyprctl dispatch focuswindow address:$win
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue