Skip to content

Commit

Permalink
correct what version of ags it is checking
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaw353 committed Nov 17, 2024
1 parent 88fe541 commit 84e4808
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion roles/hyprland/files/hypr/scripts/ags/full-screenshot.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -r 'recorder.screenshot(true)'
else
Expand Down
2 changes: 1 addition & 1 deletion roles/hyprland/files/hypr/scripts/ags/keybinds.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -t keybinds
else
Expand Down
2 changes: 1 addition & 1 deletion roles/hyprland/files/hypr/scripts/ags/launcher.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -t launcher
else
Expand Down
2 changes: 1 addition & 1 deletion roles/hyprland/files/hypr/scripts/ags/overview.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -t overview
else
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -r 'recorder.screenshot()'
else
Expand Down
2 changes: 1 addition & 1 deletion roles/hyprland/files/hypr/scripts/ags/powermenu.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -t powermenu
else
Expand Down
2 changes: 1 addition & 1 deletion roles/hyprland/files/hypr/scripts/ags/record.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
pgrep ags > /dev/null
pgrep agsv1 > /dev/null
if [[ "$?" != "0" ]]; then
agsv1 -r 'recorder.start'
else
Expand Down

0 comments on commit 84e4808

Please sign in to comment.