Skip to content

Commit 57a664e

Browse files
committed
cog: Fixes ShellCheck warnings
1 parent 39e8d5b commit 57a664e

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

recipes-browser/cog/files/cog-fdo

+5-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ params=()
1717

1818
for arg in "$@"; do
1919
if [[ $arg == "--maximized" ]]; then
20-
export COG_PLATFORM_WL_VIEW_WIDTH=$(journalctl -b | grep weston | grep current | cut -f 1 -d '@' | awk '{ print $6 }' | cut -d 'x' -f 1 | tail -n 1)
21-
export COG_PLATFORM_WL_VIEW_HEIGHT=$(journalctl -b | grep weston | grep current | cut -f 1 -d '@' | awk '{ print $6 }' | cut -d 'x' -f 2 | tail -n 1)
20+
COG_PLATFORM_WL_VIEW_WIDTH=$(journalctl -b | grep weston | grep current | cut -f 1 -d '@' | awk '{ print $6 }' | cut -d 'x' -f 1 | tail -n 1)
21+
export COG_PLATFORM_WL_VIEW_WIDTH
22+
23+
COG_PLATFORM_WL_VIEW_HEIGHT=$(journalctl -b | grep weston | grep current | cut -f 1 -d '@' | awk '{ print $6 }' | cut -d 'x' -f 2 | tail -n 1)
24+
export COG_PLATFORM_WL_VIEW_HEIGHT
2225
else
2326
params+=("$arg")
2427
fi

recipes-browser/cog/files/cog-fdo-exported-wayland

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/sh
2-
export $(cat /proc/$(pidof weston-keyboard)/environ | strings | grep WAYLAND_DISPLAY)
3-
export $(cat /proc/$(pidof weston-keyboard)/environ | strings | grep XDG_RUNTIME_DIR)
42

5-
if [[ "root" = "$(whoami)" ]]
3+
export "$(strings < /proc/"$(pidof weston-keyboard)"/environ | grep WAYLAND_DISPLAY)"
4+
export "$(strings < /proc/"$(pidof weston-keyboard)"/environ | grep XDG_RUNTIME_DIR)"
5+
6+
if [ "root" = "$(whoami)" ]
67
then
78
su weston -c "/usr/bin/cog-fdo $*"
89
else

0 commit comments

Comments
 (0)