'steamdeck'에 해당되는 글 2건

  1. 2023.01.22 SSH 서비스 실행
  2. 2022.12.16 Steam Deck 미디어 바로가기

SSH 서비스 실행

UMPC 2023. 1. 22. 12:30

https://www.youtube.com/watch?v=D17zrZDYXdg 

 

sudo systemctl start sshd

sudo systemctl enable sshd

Posted by 철냄비짱
,

 

https://www.youtube.com/watch?v=RCVy2BzxzN8 

 

root가 아닌 하위 권한 계정도 크롬을 실행할 수 있게 하는 명령어 같음
flatpak --user override --filesystem=/run/udev:ro com.google.Chrome

KIOSK
youyube 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 --kiosk "https://www.youtube.com"

youyube Music 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 --kiosk "https://music.youtube.com"

tving 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 --kiosk "https://www.tving.com"

NETFLIX 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 --kiosk "https://www.netflix.com"

 

WEB
youyube 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 "https://www.youtube.com"

youyube Music 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 "https://music.youtube.com"

tving 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 "https://www.tving.com"

NETFLIX 바로가기
run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u @@ --window-size=1024,640 --force-device-scale-factor=1.25 --device-scale-factor=1.25 "https://www.netflix.com"

 

 

Posted by 철냄비짱
,