Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Ask Lemmy
  3. What computer life hacks are your most used?

What computer life hacks are your most used?

Scheduled Pinned Locked Moved Ask Lemmy
asklemmy
162 Posts 118 Posters 1 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C [email protected]

    Windows+L every time I leave my desk.

    N This user is from outside of this forum
    N This user is from outside of this forum
    [email protected]
    wrote last edited by [email protected]
    #25

    ⌃⌘Q for those of us on MacBooks

    P 1 Reply Last reply
    3
    • owenfromcanada@lemmy.caO [email protected]

      Oh dang, I never knew about the !! shortcut. I especially like it for the sudo example, because when it complains I don't have permission, I can basically yell at it.

      D This user is from outside of this forum
      D This user is from outside of this forum
      [email protected]
      wrote last edited by
      #26

      I've seen posts suggesting adding the following to your .bashrc:

      alias fuck='sudo $(history -p \!\!)'
      
      1 Reply Last reply
      9
      • dmmacniel@feddit.orgD [email protected]

        That's not even a life hack. That's literally policy, at least where I work at 🙂

        D This user is from outside of this forum
        D This user is from outside of this forum
        [email protected]
        wrote last edited by
        #27

        Not everyone knows the keyboard shortcut though. I bet you can find people hunting for it using the mouse every time.

        R 1 Reply Last reply
        4
        • tehbamski@lemmy.worldT [email protected]

          Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

          Use the Up and Down Arrows to move/jump vertically.

          Left and Right Arrows to move/jump horizontally.

          Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

          Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

          R This user is from outside of this forum
          R This user is from outside of this forum
          [email protected]
          wrote last edited by
          #28

          In a browser I right click on a bookmark folder to open all the bookmarks in separate tabs. I usually do this with my social sites.

          To update Fedora "sudo dnf upgrade". I used to use the software store but that often requires a reboot.

          Windows+L to lock the computer.

          I always have my vpn, terminal window, and qbittorrent start at boot.

          1 Reply Last reply
          0
          • tehbamski@lemmy.worldT [email protected]

            Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

            Use the Up and Down Arrows to move/jump vertically.

            Left and Right Arrows to move/jump horizontally.

            Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

            Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

            undefined@lemmy.hogru.chU This user is from outside of this forum
            undefined@lemmy.hogru.chU This user is from outside of this forum
            [email protected]
            wrote last edited by
            #29

            Set up three WireGuard network interfaces on a VPS then accept traffic from your end devices to route through the three double hop VPN tunnels to a country with better privacy laws. Install an ad and tracking blocking DNS server to block all nefarious hostnames as well as more granular blockers for your browsers.

            E 1 Reply Last reply
            7
            • tehbamski@lemmy.worldT [email protected]

              Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

              Use the Up and Down Arrows to move/jump vertically.

              Left and Right Arrows to move/jump horizontally.

              Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

              Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

              _ This user is from outside of this forum
              _ This user is from outside of this forum
              [email protected]
              wrote last edited by
              #30

              hosts file block twitter/reddit/facebook/etc on all my computers. i guess i haven't done it on my phone because i can't be bothered [and regardless of how much i need a hit, i'm not gonna sit there on my phone browser for hours anyway]

              D 1 Reply Last reply
              1
              • M [email protected]

                To navigate to the previous folder

                cd -

                To reissue the previous command with a prefix. For example:

                cat /root/.ssh/authorized_keys # Will fail without privilege

                sudo !!

                To use the argument of the previous command. For example:

                tac ~/.ssh/authorized_keys # oops, misspelled cat

                cat !$

                B This user is from outside of this forum
                B This user is from outside of this forum
                [email protected]
                wrote last edited by
                #31

                cd -... Wow, I can't believe I never knew about this. I should read more man pages.

                !! Is useful too, never knew. Thanks!

                1 Reply Last reply
                5
                • P [email protected]

                  Custom autocompletes/corrects. Just figure out a non-word (i.e. something that you wouldn't want to use without autocorrecting) that's easy to remember and set it up frequently used snippets of text. Some examples:

                  • meetnow - my zoom meeting link
                  • booktime - a link to my calendly
                  • frequent sentences or blurbs I use in emails (e.g. thanks so much, let me know if i can help with anything else sorta stuff)
                  • nicknames for different frequently used hex codes
                  • galert/yalert/redalert populate a styled HTML snippet to make a green, yellow, or red div that I can then just pop my content into
                  • lots of other little HTML snippets like that
                  • group nicknames to populate a list of email addresses (like an Outlook contacts group but you can use it outside of Outlook)

                  Anyway there are a ton of things I use it for, those are just a few examples. Saves me a lot of time.

                  You can do this on Macs at a system level, on Windows you can do it on some programs but it seems to have to be set up on each one which is worthless.

                  2 This user is from outside of this forum
                  2 This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #32

                  That's so smart!

                  I set up autocompletes for my phone number (and a few other personal links) but these are amazing.. thanks for sharing

                  1 Reply Last reply
                  1
                  • tehbamski@lemmy.worldT [email protected]

                    Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

                    Use the Up and Down Arrows to move/jump vertically.

                    Left and Right Arrows to move/jump horizontally.

                    Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

                    Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

                    C This user is from outside of this forum
                    C This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #33

                    My computer gets hacked all the time, I'm pretty used to it now.

                    1 Reply Last reply
                    0
                    • tehbamski@lemmy.worldT [email protected]

                      Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

                      Use the Up and Down Arrows to move/jump vertically.

                      Left and Right Arrows to move/jump horizontally.

                      Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

                      Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

                      B This user is from outside of this forum
                      B This user is from outside of this forum
                      [email protected]
                      wrote last edited by
                      #34

                      Ctrl+r on bash and zsh (possibly others) for quickly recalling anything you've typed before

                      H 1 Reply Last reply
                      11
                      • tehbamski@lemmy.worldT [email protected]

                        Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

                        Use the Up and Down Arrows to move/jump vertically.

                        Left and Right Arrows to move/jump horizontally.

                        Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

                        Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

                        R This user is from outside of this forum
                        R This user is from outside of this forum
                        [email protected]
                        wrote last edited by
                        #35

                        My favorite windows shortcut is 'Windows+shift+left/right' to move an application between monitors. Very helpful for moving games around or snapping without have to use a mouse.

                        M 1 Reply Last reply
                        7
                        • B [email protected]

                          The Multiple desktops feature is critical for me. It allows you to use one computer for multiple functional concepts simultaneously without visually interfering with each other or constantly needing to close and re-open things. It's available in both windows and linux (which had it first) for a long time now.

                          I keep my personal stuff on one desktop, I keep my work stuff on a second desktop, and I keep my gaming stuff on a third desktop. Then I just flip between them based on what I'm currently doing.

                          That way I'm not getting things confused with each other, or distracted by something personal while I'm working.

                          Ctrl+Windows+Left/Right for Windows is the shortcut to flip back and forth between them. Or you can also see it on the Windows+Tab menu as well (along the bottom below the apps)

                          The only downside to this is that you need more RAM than normal, because it's not uncommon for me to have dozens (sometimes north of 100) of browser tabs, and a half dozen applications from office to video games open simultaneously between the different desktops. I would suggest running 32gb at a minimum, and 64gb is a lot better.

                          B This user is from outside of this forum
                          B This user is from outside of this forum
                          [email protected]
                          wrote last edited by
                          #36

                          I've found the windows one sorely lacking. As I recall all windows of a specific program have to be on a single desktop. This causes issues if you are working on multiple word docs, browser windows, or even just want access to email in both desktops. AFAIK there isn't a work around to this. Am I out of the loop on a nice windows feature?

                          B H 2 Replies Last reply
                          0
                          • tehbamski@lemmy.worldT [email protected]

                            Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

                            Use the Up and Down Arrows to move/jump vertically.

                            Left and Right Arrows to move/jump horizontally.

                            Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

                            Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

                            P This user is from outside of this forum
                            P This user is from outside of this forum
                            [email protected]
                            wrote last edited by
                            #37

                            Shift + del: skips the trash and actually deletes things

                            1 Reply Last reply
                            3
                            • B [email protected]

                              I've found the windows one sorely lacking. As I recall all windows of a specific program have to be on a single desktop. This causes issues if you are working on multiple word docs, browser windows, or even just want access to email in both desktops. AFAIK there isn't a work around to this. Am I out of the loop on a nice windows feature?

                              B This user is from outside of this forum
                              B This user is from outside of this forum
                              [email protected]
                              wrote last edited by
                              #38

                              You must be out of the loop, I have different browser tabs and excel files up on different desktops right now.

                              Sometimes if you need to start a new file it will swap you around, but you can always immediately move it wherever you want.

                              1 Reply Last reply
                              2
                              • tehbamski@lemmy.worldT [email protected]

                                Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

                                Use the Up and Down Arrows to move/jump vertically.

                                Left and Right Arrows to move/jump horizontally.

                                Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

                                Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

                                X This user is from outside of this forum
                                X This user is from outside of this forum
                                [email protected]
                                wrote last edited by [email protected]
                                #39

                                Ctl shift t - reopen last closed tab in tour browser

                                B 1 Reply Last reply
                                1
                                • _ [email protected]

                                  hosts file block twitter/reddit/facebook/etc on all my computers. i guess i haven't done it on my phone because i can't be bothered [and regardless of how much i need a hit, i'm not gonna sit there on my phone browser for hours anyway]

                                  D This user is from outside of this forum
                                  D This user is from outside of this forum
                                  [email protected]
                                  wrote last edited by
                                  #40

                                  pi-hole does the same thing for a whole network

                                  Y 1 Reply Last reply
                                  3
                                  • B [email protected]

                                    Modern computers don’t use much energy when they sleep.

                                    D This user is from outside of this forum
                                    D This user is from outside of this forum
                                    [email protected]
                                    wrote last edited by
                                    #41

                                    If they sleep

                                    1 Reply Last reply
                                    1
                                    • tehbamski@lemmy.worldT [email protected]

                                      Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

                                      Use the Up and Down Arrows to move/jump vertically.

                                      Left and Right Arrows to move/jump horizontally.

                                      Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

                                      Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

                                      G This user is from outside of this forum
                                      G This user is from outside of this forum
                                      [email protected]
                                      wrote last edited by
                                      #42

                                      Win + E to open a file browser window

                                      1 Reply Last reply
                                      4
                                      • X [email protected]

                                        Ctl shift t - reopen last closed tab in tour browser

                                        B This user is from outside of this forum
                                        B This user is from outside of this forum
                                        [email protected]
                                        wrote last edited by
                                        #43

                                        Should be ctrl shift + t

                                        Is there two shortcuts for this?

                                        1 Reply Last reply
                                        2
                                        • bahnd@lemmy.worldB [email protected]

                                          Microsoft has never fixed the sticky keys replacement cheese to unlock a PC you have physical access to. Ive done it up to W10, never tested it on W11.

                                          1. Get a Windows recovery USB.

                                          2. Boot into the recovery menu and open the command prompt.

                                          3. Navagate to system32 and make a copy of the cmd.exe file (for a backup)

                                          4. Copy the sticky_keys.exe and have it overwrite cmd.exe, then reboot.

                                          5. On the login screen, smash the shift key until the command prompt appears and for some reason (because no user has logged in yet) it has admin permissions, so you can reset local passwords.

                                          6. Once your logged in as a local admin, copy the backup of cmd.exe back so noone is none the wiser (except the security software that knows you messed with something)

                                          F This user is from outside of this forum
                                          F This user is from outside of this forum
                                          [email protected]
                                          wrote last edited by
                                          #44

                                          That.... Seems like a pretty massive vulnerability. Like obviously that can be locked down by each user or administrator, but still....

                                          S sorse@discuss.tchncs.deS 2 Replies Last reply
                                          6
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups