File tree 2 files changed +9
-5
lines changed
recipes-browser/cog/files
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,11 @@ params=()
17
17
18
18
for arg in " $@ " ; do
19
19
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
22
25
else
23
26
params+=(" $arg " )
24
27
fi
Original file line number Diff line number Diff line change 1
1
#! /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)
4
2
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) " ]
6
7
then
7
8
su weston -c " /usr/bin/cog-fdo $* "
8
9
else
You can’t perform that action at this time.
0 commit comments