remove texlive for now, add in steam

This commit is contained in:
Chris Cochrun 2023-10-19 09:48:44 -05:00
parent cde4e00d53
commit a7409dccc5
2 changed files with 6 additions and 4 deletions

View file

@ -135,7 +135,7 @@
;; "tracker" ;; "tracker"
;; "tracker-miners" ;; "tracker-miners"
"gvfs" "gvfs"
"texlive" ;; "texlive"
;; "texlive-pdfx" ;; "texlive-pdfx"
;; "texlive-latex-pdfx" ;; "texlive-latex-pdfx"
"jmtpfs" "jmtpfs"
@ -210,6 +210,7 @@
"libreoffice" "libreoffice"
"swaylock-effects" "swaylock-effects"
"swayidle" "swayidle"
"steam"
;; "tridactyl-native" ;; "tridactyl-native"
;; Fonts ;; Fonts

View file

@ -1,15 +1,16 @@
#!/usr/bin/env bash #!/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 echo $window
win=$(echo $window | awk '{print $1}' | sed 's/://') win=$(echo $json | jq ".[] | select(.title==$window).address" | sed 's/"//g')
echo $win echo $win
if [ ! -z "$win" ] if [ ! -z "$win" ]
then then
wlrctl window focus $win hyprctl dispatch focuswindow address:$win
fi fi