This commit is contained in:
Chris Cochrun 2023-10-20 16:24:52 -05:00
parent 7f7fa5466e
commit d37ccb80be
4 changed files with 58 additions and 65 deletions

View file

@ -10,6 +10,7 @@ configuration {
run-list-command: "fish -c functions"; run-list-command: "fish -c functions";
display-drun: " "; display-drun: " ";
display-run: " "; display-run: " ";
display-window: " ";
display-combi: " "; display-combi: " ";
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";/* - {exec}*/ drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";/* - {exec}*/
threads: 0; threads: 0;

View file

@ -1,54 +1,44 @@
(list (channel (list (channel
(name 'rde) (name 'guix)
(url "https://git.sr.ht/~abcdw/rde") (url "https://git.savannah.gnu.org/git/guix.git")
(branch "master") (branch "master")
(commit (commit
"793aa8aeb73ea2da28b314da08d4c3296cb3ff4e") "b3d0797d279b0aa48f6b652c149b7f974f3acc89")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"257cebd587b66e4d865b3537a9a88cccd7107c95" "9edb3f66fd807b096b48283debdcddccfea34bad"
(openpgp-fingerprint (openpgp-fingerprint
"2841 9AC6 5038 7440 C7E9 2FFA 2208 D209 58C1 DEB0")))) "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))
(channel (channel
(name 'rosenthal) (name 'nonguix)
(url "https://codeberg.org/hako/rosenthal.git") (url "https://gitlab.com/nonguix/nonguix")
(branch "trunk") (branch "master")
(commit (commit
"d47daea1e4f17fd897e2727584f2b042695fc780") "14656d642dc113c73f9b144ccba366376a274a2b")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"7677db76330121a901604dfbad19077893865f35" "897c1a470da759236cc11798f4e0a5f7d4d59fbc"
(openpgp-fingerprint (openpgp-fingerprint
"13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7")))) "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
(channel (channel
(name 'nonguix) (name 'rosenthal)
(url "https://gitlab.com/nonguix/nonguix") (url "https://codeberg.org/hako/rosenthal.git")
(branch "master") (branch "trunk")
(commit (commit
"14656d642dc113c73f9b144ccba366376a274a2b") "d47daea1e4f17fd897e2727584f2b042695fc780")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"897c1a470da759236cc11798f4e0a5f7d4d59fbc" "7677db76330121a901604dfbad19077893865f35"
(openpgp-fingerprint (openpgp-fingerprint
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) "13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7"))))
;; (channel
;; (name 'emacs)
;; (url "https://github.com/babariviere/guix-emacs")
;; (commit
;; "a0c3bd55f9f8a33e65e28743d8d5df0c6deb5176")
;; (introduction
;; (make-channel-introduction
;; "72ca4ef5b572fea10a4589c37264fa35d4564783"
;; (openpgp-fingerprint
;; "261C A284 3452 FB01 F6DF 6CF4 F9B7 864F 2AB4 6F18"))))
(channel (channel
(name 'guix) (name 'rde)
(url "https://git.savannah.gnu.org/git/guix.git") (url "https://git.sr.ht/~abcdw/rde")
(branch "master") (branch "master")
(commit (commit
"d389f6777359aa44ef9c71989fc1f49e6b222f1d") "793aa8aeb73ea2da28b314da08d4c3296cb3ff4e")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad" "257cebd587b66e4d865b3537a9a88cccd7107c95"
(openpgp-fingerprint (openpgp-fingerprint
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))) "2841 9AC6 5038 7440 C7E9 2FFA 2208 D209 58C1 DEB0")))))

View file

@ -77,8 +77,6 @@
"vlc" "vlc"
"mpv" "mpv"
"mpv-mpris" "mpv-mpris"
"libva"
"libva-utils"
"neofetch" "neofetch"
"qrencode" "qrencode"
"git:send-email" "git:send-email"
@ -117,6 +115,7 @@
;; Utilities and Libraries ;; Utilities and Libraries
"libva" "libva"
"libva-utils"
"libvpx" "libvpx"
"python" "python"
"gstreamer" "gstreamer"

View file

@ -1,16 +1,19 @@
#!/usr/bin/env bash #!/usr/bin/env bash
json=$(hyprctl clients -j) if [[ $HYPRLAND_INSTANCE_SIGNATURE ]];
window=$(echo $json | jq .[].title | rofi -i -sync -dmenu -p " " -theme ~/.config/rofi/launchers-git/laptop-rbw-wayland.rasi) rofi -i -show window -p " " -theme ~/.config/rofi/launchers-git/laptop-rbw-wayland.rasi
else
echo $window json=$(hyprctl clients -j)
window=$(echo $json | jq .[].title | rofi -i -sync -dmenu -p " " -theme ~/.config/rofi/launchers-git/laptop-rbw-wayland.rasi)
win=$(echo $json | jq ".[] | select(.title==$window).address" | sed 's/"//g')
echo $window
echo $win
win=$(echo $json | jq ".[] | select(.title==$window).address" | sed 's/"//g')
if [ ! -z "$win" ]
then echo $win
hyprctl dispatch focuswindow address:$win
if [ ! -z "$win" ]
then
hyprctl dispatch focuswindow address:$win
fi
fi fi