I need this. I have a 49" monitor and sharing the screen is such a pita
More and more I’ve gotten lazy and share my main screen. My editor is big enough for people to see, but browsers are an issue. I have less of an issue zooming those as needed.
81–90 of 167 posts
I need this. I have a 49" monitor and sharing the screen is such a pita
More and more I’ve gotten lazy and share my main screen. My editor is big enough for people to see, but browsers are an issue. I have less of an issue zooming those as needed.
I wonder if something like this could be done on Linux with xorg hackery (probably involving xvfb?). Definitely seems handy.
Earlier quoted context omitted.
Linux users probably already have some weird workflow with X11 virtual buffers to do this.
Xnest is probably enough. I've used it for similar purposes a few times. Don't know the equivalent for Wayland though.
Very nice idea! It would be nice to be able to do the same on Linux and/or Windows, too!
This has been possible on Linux (Wayland + pipewire) for a couple years now.
Earlier quoted context omitted.
I just realized formatting is a bit broken. :( Fixed: #!/bin/bash swaymsg create_output OUTPUT=$(swaymsg -r -t get_outputs | jq '.[].name' | grep HEADLESS | tr -d '"') # No need to reduce res, it defualts to 1080p # swaymsg output "$OUTPUT" resolution 1280x720 wl-mirror "$OUTPUT" swaymsg output "$OUTPUT" unplug
You can do code blocks on HN by prefixing your lines with four spaces. #!/bin/bash swaymsg create_output OUTPUT=$(swaymsg -r -t get_outputs | jq '.[].name' | grep HEADLESS | tr -d '"') # No need to reduce res, it defualts to 1080p # swaymsg output "$OUTPUT" resolution 1280x720 wl-mirror "$OUTPUT" swaymsg output "$OUTPUT" unplug
Nice. I'm testing it watching a YouTube video in "full screen" in its window, while also leaving room for a browser and email window on that monitor.
This is an excellent use case that I also often felt the need for. You can remove all the YT clutter this way, have all the controls and keyboard shortcuts, and extensions like Video Speed Controller still functional while precisely controlling the position and size of the video. Would be great for following long lectures and tutorials. any good solution for this for a Windows machine?
#!/bin/sh
new_disp=:2
size="1600x900"
unset XDG_SEAT XMODIFIERS GTK_IM_MODULE
set - "$@" \
-noreset -br -ac -dpi 120 \
-xkb-layout us \
-screen "$size" \
"$new_disp" \
#
Xephyr "$@" &
sleep .5
export DISPLAY="$new_disp"
metacity &
urxvt &
Metacity is kinda deprecated but still my "simple WM" of choice. You may need to set an xauth key for :2. ("xauth add :2 . ")(Script slightly edited & shortened, probably broke something :D)
I think the problem I have is more so that people want my font sizes to be 3x what I have them. Usually I’m presenting a spreadsheet (financial statements and such) and people ask me to zoom in. Which I can but it breaks the whole thing and throws me off because I can no longer read my document anymore and I’m trying to present it. For that reason, I evangelize that attendees use the Zoom feature on their device if i…
People can zoom, yes, but it's going to require scrolling which can be distracting even if it's set to "follow pointer" -- and your pointer may be zipping all over (like, going to the toolbar when the users are looking at a row near the bottom of the screen).
I know it is a challenge to limit yourself to a small canvas -- we all love using a big screen for certain tasks -- but I believe it's going to be easier and make for a more engaging and productive session when you control both the viewport size and the scroll position at all times. One nice thing about Zoom is that it is dynamic, so if you are sharing a window and you realize you need more horizontal real-estate for a certain part of your preso, you can momentarily resize your window for that, and then go back to a more manageable size when done, with no re-sharing needed.
Wouldn’t it be nice if we could adjust resolution per window? On a 4k monitor some applications have tiny text and icons, and no way adjust that I can find.