Split Screen 3 10 – Effortless Window Management

broken image


The arrangement of Windows in Windows 10 is even easier to use. In Windows 10, the Snap Assist function that sticks the window to the edge of the screen is available, and even more convenient. If you drag the window to the left or right of the screen, the window will expand to fill half of the screen. How to Split Screen on Windows 10 into 3 Screens With the first 2 screens open, click on the Window on the right to select it. Then, press the Windows key on your keyboard. Finally, press the up arrow key.

  1. Split Screen 3 10 – Effortless Window Management
  2. Split Screen 3 10 – Effortless Window Management System
© Apple Apple
  • You can get rid of split screen on your iPad by swiping one app away, or by disabling the split screen feature altogether.
  • If you have one app floating on top of another, you can close it by swiping it to the right, or by docking it to one side and then closing it like any other split screen.
  • Using split screen on your iPad is a great way to multitask, but can be confusing.
  • Visit Business Insider's Tech Reference library for more stories.

The iPad is so versatile that it might sometimes feel like a complete replacement for your laptop or desktop computer.

One example: you can now have two apps open on your iPad at once, just like any desktop computer.

Unfortunately, the split screen mode on the iPad can be incredibly confusing.

Case in point: suppose you have two apps open, side-by-side. How do you close one, and get back to a single-app view?

We'll cover that, but first, a quick primer on how to use the iPad's split screen capability.

Check out the products mentioned in this article:

iPad (From $329.99 at Best Buy)

How to open two apps in split screen view on your iPad

First of all, to use the split screen mode on an iPad, you'll need to be using an iPad Pro, an iPad 5th generation or newer, an iPad Air 2 or newer, or an iPad mini 4 or newer. Check out this article from Apple to tell what type of iPad you have.

1. When using apps side-by-side on your iPad, you'll need to 'grab' the second app from the Dock bar that appears at the bottom of the Home page. That means if that app isn't normally found there, you need to open it, so it shows up temporarily in one of the 'recently used' slots on the right side of the Dock.

2. After making sure that the second app will appear in the Dock, start the other app that you want to use.


Gallery: Best Wireless Security Cameras for 2020 (The Family Handyman)

3. Swipe up gently from the bottom of the screen to see the Dock. Don't swipe up too hard, or you'll just return to the Home screen. Only swipe up enough that the Dock floats over your app.

© Dave Johnson/Business Insider Tap and hold the app, then drag it towards the right edge of the screen. Dave Johnson/Business Insider

4. Drag it all the way to the right and let go. If you release it without going all the way to the edge, it'll float on top of the first app in a small pane. If you drag it all the way to the right, it'll appear side-by-side, and you can drag the divider bar between them to make them relatively wider or narrower.

© Dave Johnson/Business Insider You can multitask by positioning two apps side-by-side on your iPad. Dave Johnson/Business Insider

Not all apps can run in split screen mode. If you dry to drag an app out of the Dock and it will only run full screen, this is why.

How to get rid of a split screen on your iPad

If you already have two apps on the screen and want to close one of them, it's easy to get back to the standard one-app view, once you know the trick.

  • If the two apps are side-by-side with a divider between them, drag the bar all the way to the right or left. If you drag it to the right, you'll close the app on the right. If you drag it all the way to the left, you'll close the app on the left. In both cases, the app that's left open will go full screen.
  • If the second app is floating on top of the main app, tap and hold the top of the floating app, and drag it downward. It'll then snap to the right side of the screen. Now you can close it by dragging the divider. You can also swipe it to the right to close it temporarily — swipe left on the right side of the screen at any time to bring it back.
© Dave Johnson/Business Insider As you drag the second app downward, it'll automatically dock to the right side of the screen. Dave Johnson/Business Insider

How to turn off split screen on your iPad permanently

If you dislike this feature and don't want to accidentally open apps side-by-side, you can disable it entirely.

  1. Open the Settings app.
  2. Tap 'General,' then 'Homescreen & Dock,' and then 'Multitasking.'
  3. Turn off 'Allow Multiple Apps' by sliding the switch to the left.
© Dave Johnson/Business Insider If you dislike the split screen mode, you can turn it off entirely. Dave Johnson/Business Insider

Related coverage from Tech Reference:

Read the original article on Business Insider

I've never been an avid user of GNU Screen despite a number of people giving it rave reviews. I never needed to resume remote sessions and the window management stuff seemed pointless ('Why not just open a new tab in gnome-terminal?!').

However, today I discovered that newer versions of Screen are capable of splitting the terminal window horizontally and vertically. A light bulb came on, and after a bit of experimentation I wound up with something that looks like this:

One window for editing, one for server output, one for shell commands and git. I'd normally use different tabs for this stuff, and now here it is — all in front of me. This is more like it! Something I'll actually use.

Since it took a little digging to track down the relevant documentation, I thought it might be worth documenting how I got my screen session to this point:

1. Open a new terminal and execute 'screen'

This should present you with the command prompt (you may get a message regarding GNU Screen licensing — simply hit 'return' to skip this).

2. Split the screen vertically

Press CTRL-a SHIFT- (CTRL-a |) to split the screen vertically.

Split Screen 3 10 – Effortless Window Management

Split Screen 3 10 – Effortless Window Management

Split Screen 3 10 – Effortless Window Management System

You can use CTRL-a TAB to switch between the panes. Note the blank pane doesn't do anything useful yet.

3. Start a command prompt in the blank pane

Press CTRL-a TAB until you're in the new, blank pane, then press CTRL-a c to create a new window with a command prompt in this pane.

4. Split the right pane horizontally

Ensure the right pane has focus (press CTRL-a TAB until the cursor is in the blank pane), then press CTRL-a SHIFT-s (CTRL-a S) to split the pane horizontally.

Again, the new pane is blank and seemingly unresponsive.

5. Switch to the lower right pane and create a new session

Use CTRL-a TAB to move focus to the lower right pane we just created, then CTRL-a c to spin up a new shell prompt.

6. Use CTRL-a TAB to move between the panes and start coding!

Other useful commands

  • CTRL-a SHIFT-x (CTRL-a X) will close the pane that has focus
  • CTRL-a d will detach screen from the TTY and put it in the background. Resume with screen -r
  • CTRL-a n and CTRL-a p shifts input focus to the next & previous window, respectively.
  • CTRL-a SHIFT-a (CTRL-a A) will ask you to set the title of the focus window.
  • CTRL-' list available windows

Want to learn more?

If you're interested in learning more about GNU Screen you can check out the official manpage.It's a pretty substantial document and some people prefer physical references, so you might also take a look at GNU Screen: The virtual terminal manager which is essentially a printed copy of an older version of the manpage.

The book is certainly a little dated (for example, I don't believe it covers screen splitting since the feature is relatively new)but fortunately Screen hasn't changed a ton over the years and folks new to Screen it's still a useful reference.





broken image