Categories
Browsers Internet Laptop Microsoft

How to Move Scrollbar from Right to Left in Mozilla Firefox

By default Mozilla Firefox shows the scrollbar on the right side. While left-handers want to show the scrollbar on their left side.

I’ll show you a way to move the scrollbar from Right to Left in Mozilla Firefox as shown in following screenshot: Go step by step:

  1. Open firefox and type about:config in the addressbar and press Enter. It’ll confirm, click on I’ll be careful, I promise! button.
  2. Now type layout.scrollbar.side in the Filter box. It’ll show a single entry “layout.scrollbar.side” in the results window.


  3. Either double-click on this entry or right-click on it and select “Modify“. Now change its value to 3

  4. That’s it. Now Firefox will always show the scrollbar on left of the screen.
  5. N.B : If your OS language is viewed right to left, then the scrollbar will be shown on left of screen. So if you want to show it on right of screen, then change value to 2 instead of 3 in Step 3.

'Coz sharing is caring
Categories
Laptop Microsoft

How to make CON folder in Windows

It was the most discussed topic I ever heard about windows.

There were lots of discussions, gossips, bets and tons of mails roaming around about “Creation of CON folder on windows OS”

I’ll give you very simple one liner command to create the same.

Step 1: go to command prompt (Start > Run type cmd and enter, short key Win+R)

Step 2 : you’ll get any path and prompt where cursor was blinking. Write cd\

Step 3 : type in mkdir \\.\c:\con

Step 4: you can check in cmd prompt by dir \\.\c:\con

Step 5 : delete the folder by rmdir \\.\c:\con

CON is reserved name in windows, that’s the reason you neither can create nor delete the con folder using normal procedure. You have to have these smart tips to do so.

This is applicable with all the following names: CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9

Reason : these are window’s inbuilt ‘Reserved Device Names’

'Coz sharing is caring