• @Limeey@lemmy.world
    link
    fedilink
    English
    1557 months ago

    A gui is helpful sometimes, but there’s a lot of cases where there’s no feasible way to make a good gui that does what the terminal can do.

    Right tools for the right job.

    For example, a gui to move a file from one folder to another is nice - drag and drop.

    A gui that finds all files in a directory with a max depth of 2 but excludes logs and runs grep and on matching files extracts the second field of every line in the file? Please just let me write a one liner in bash

    • andrew
      link
      fedilink
      English
      1247 months ago

      A GUI makes simple things simple.

      A shell makes hard things possible.

        • @0x4E4F@sh.itjust.works
          link
          fedilink
          English
          277 months ago

          I always install gparted in the live environment 😂… cuz… yeah, I can fuck things up and end up without my data 😂.

          • @lightnsfw@reddthat.com
            link
            fedilink
            7
            edit-2
            7 months ago

            Not much of a picture guy personally but I see your point.

            Edit: I have spent a decent amount of time organizing books and comic books and that was a pretty even split between GUI and Terminal. GUI to get them in a state that I could bulk rename/move into appropriate directory with the Terminal. I assume it would be similar with pictures.

          • @Astaroth@lemm.ee
            link
            fedilink
            37 months ago

            I have a GUI file manager that I never use but I got it because I know at some point I’m going to want to be able to see thumbnails of images.

        • @thehatfox@lemmy.world
          link
          fedilink
          English
          47 months ago

          I see a lot of people saying they have to use a GUI tool for partition management, and I’ve never understood why.

          Text based tools like parted are fairly easy to use, at least compared to other terminal tools the same people are able to use for other tasks.

          What is it about partitioning that needs a GUI when other tasks don’t? Is it the visual representation of the partition layout? A general fear of borking a disk?

          • @lightnsfw@reddthat.com
            link
            fedilink
            157 months ago

            Is it the visual representation of the partition layout? A general fear of borking a disk?

            Yes

            Being able to see it helps a lot. I can and have done it via parted. My media server doesn’t have a desktop environment installed. I just really would rather have a GUI when it’s available as an added safeguard.

          • aard
            link
            fedilink
            77 months ago

            Problem nowadays is that changing partition tables is so rare that parted changes their commands between uses, and I never remember if fdisk nowadays has all the GPT related issues that made me try parted in the first place ironed out. Plus I can’t remeber the new GPT commands and partition IDs.

            I still mostly just read the help text every time because nothing else is installed - but from the speed I might be a bit faster with a well designed GUI nowadays if it is about modifying GPT disks. MBR disks I still can do with fdisk in my sleep.

      • andrew
        link
        fedilink
        English
        167 months ago

        That’s just not true. Not without lots of hand waving.

        In my terminal I can, and pretty much hourly do, combine many programs in chains of input and output to perform specific tasks and get information I need. And that’s how these programs are designed to be used. The programmer builds it to do specific things and then the user can combine the program with others in novel and nearly endless ways.

        With a GUI, sometimes that’s possible between two programs if you can copy/paste between them but it’s much less reusable and a lot more tedious. But usually it’s just not possible because they’re designed for specific user personas and not as general purpose tools that may be part of a script.

          • andrew
            link
            fedilink
            English
            67 months ago

            Generally I would agree that anything can be made with a GUI with enough investment. But the point where diminishing returns don’t give enough return on GUI investment are reached much sooner than a scriptable shell environment where a power user can extend it in ways that would only make sense for that power user or a very small number of users.

        • andrew
          link
          fedilink
          English
          77 months ago

          To play the opposite team a bit here, I like the idea Android uses of Intents for something like this. I think it falls apart a bit in reality because app companies kinda want you in their garden and so don’t often do the work to keep things interoperable. That and the use cases from users on phones don’t frequently involve cross app functionality. But the ability is powerful for apps to say “my app needs a user photo” or one of my faves “my app needs a pgp provider (for the password store app)” and then let the other app do that piece of functionality as determined by the OS, which tracks a lot of those providers and lets the user decide which to use.

          • Avid Amoeba
            link
            fedilink
            77 months ago

            Yeah, and doing this would take significantly longer to use every time than typing up a chain of commands in a terminal.

                • @grue@lemmy.world
                  link
                  fedilink
                  English
                  77 months ago

                  Put those two statements together and the logical conclusion is that Linux users simply want everybody to be tech-savvy (although I’d use a different term: computer-literate). What’s wrong with that?

              • @grue@lemmy.world
                link
                fedilink
                English
                27 months ago

                Nobody capable of defining an algorithm in a visual flowchart like that isn’t also capable of doing it in a CLI (or at least, in text in general – writing a script). It’s thinking through what you want to happen that’s the hard part; expressing it in the UI is trivial in comparison.

            • @Buddahriffic@lemmy.world
              link
              fedilink
              27 months ago

              Things like that have been around for a long time. It was like two decades ago that I saw this shader scheme in softimage|xsi.

              For implementing something like that, each node in that graph would have an array of inputs and outputs. Each of those would have a type like vector, scalar, colour, string. Then you only allow connections if the inputs and outputs match types (though you can also have conversion nodes or selectors that say pick the red channel of a colour to turn it into a scalar). Each input can be set to a constant value instead of connecting something else to it. Outputs don’t need to be connected, which is mostly useful if a node has multiple outputs. Then each node has an evaluation function that takes all input parameters and maybe internal configuration parameters (though you might as well make everything an input param since there’s no real functional difference) and uses them to calculate the outputs, which it then sends on to anything connected to those.

              I’m not much of a UI guy but displaying it for the GUI would just involve drawing boxes or some shape for the node, then spaces for each of the inputs on the left side and outputs on the right side maybe colour code them by type, and lines running along the connections. Then just add the name and/or other visual information you want to display and positional information to let users move it around their work area.

        • @Limeey@lemmy.world
          link
          fedilink
          English
          37 months ago

          This right here, you can gui a single program, but with pipes we can chain nearly infinite programs. No way can you make a gui that is that flexible, I refuse to believe until I see it

      • kpw
        link
        fedilink
        117 months ago

        They tried to replace programming languages with drag-and-drop toolkits too. It can be done, but sometimes there’s a reason we don’t do it.

      • @radiosimian@lemmy.world
        link
        fedilink
        16 months ago

        You can have your GUI do anything a terminal can I guess, but you’d need a few million buttons on that gui where the programmer has anticipated each and every combination of CLI command that you are going to use, encoded that to a button or menu, included text entry boxes for each variable and have bundled every program, application and dependency that has ever existed. Totally possible.

      • @ElderWendigo@sh.itjust.works
        link
        fedilink
        67 months ago

        Surely you’ve used something roughly equivalent like searching a text, be it web page or other document, for a word or filtering a spreadsheet?

      • aard
        link
        fedilink
        37 months ago

        Emacs grep lets you run grep, and formats the results in a buffer from where you can then easily visit the files at the match location.

  • @0x4E4F@sh.itjust.works
    link
    fedilink
    English
    717 months ago

    Super + T in my case, but still…

    (shhh 🤫, it’s actually the win key, but don’t let the Linux users hear ya 🤫)

    • @rtxn@lemmy.world
      link
      fedilink
      English
      6
      edit-2
      7 months ago

      For me, it’s:

      • mod + return for terminal
      • mod + e for file manager
      • mod + r for dmenu/bemenu
      • mod + d to switch to the next empty workspace.

      All because I have to work with win10 workstations and using a different, superior shortcut scheme would mess up my muscle memory. Remembering to use shutdown -s -f -t 0 instead of poweroff is difficult enough, and don’t even get me started with the audacity to use curl as an alias for Invoke-WebRequest!

    • @yesman@lemmy.worldOP
      link
      fedilink
      47 months ago

      I have to confess. I had to look up the shortcut for terminal because I haven’t interacted with a Linux desktop in years. I’m a Windows cuck, but not a total imposter bc I’ve kept a debian server running on my network for years. Whenever something breaks or I do an update (the updates are invariably the cause of the breakage) I manage her with ssh.

      • @0x4E4F@sh.itjust.works
        link
        fedilink
        English
        17 months ago

        It’s Ctrl+Alt+T on most DEs… but, that’s way too many keys for my taste, so I usually just add Super+T as well (don’t remove the default).

    • Jamie
      link
      fedilink
      37 months ago

      Super + S for a terminal, Super + F for Firefox.

  • @cetvrti_magi@lemmy.world
    link
    fedilink
    627 months ago

    Few days ago I was in meeting with two friend, we did something for school, and my screen was shared. At one point I had to type something in Vim so I opened a terminal. They were shocked, confused and said something like “we aren’t hackers” (and we are on IT department). More people should know about beauty of CLI.

  • @Agent641@lemmy.world
    link
    fedilink
    367 months ago

    The terminal is not fancy, or pretty, and its not that nice to use, but its always available and it gets the job done, just like OPs mum

  • @misophist@lemmy.world
    link
    fedilink
    347 months ago

    Honestly, I like both. I use whichever provides the biggest productivity multiplier. For example, I can navigate around the filesystem and manipulate text files and code extremely quickly in the terminal. On the flip side, I like to use a gui which allows me to spread 6-12 terminal windows across my multiple displays.

  • @Yaarmehearty@lemmy.ml
    link
    fedilink
    317 months ago

    I can’t say I love the terminal, if there’s a GUI for a task I’ll use that but there comes a time in every troubleshooting session where the terminal is just the only way to do something reliably.

    I’m not going to lie though, I forget commands constantly so have to search the most basic shit to type in.

        • @PlutoParty@programming.dev
          link
          fedilink
          17 months ago

          Ash is the only one I’m aware of, but that’s primarily going to be found and used on stuff like routers or other embedded devices. Any modern shell can support history. That said, many users will disable it or wipe it on logout for security reasons.

          • @chitak166@lemmy.world
            link
            fedilink
            27 months ago

            It’s not just history support. It will provide autocomplete suggestions based on what you’ve already typed and allow you to browse the history of a specific query.

            Zsh is the only shell I’ve used that supports it, using Manjaro.

            My Ubuntu 22.04 server using Bash does not. It only supports the basic history that I think you are referring to where you can just browse the history of all your commands at once.

  • @dQw4w9WgXcQ@lemm.ee
    link
    fedilink
    297 months ago

    Intellij: Has a modern GUI for Git with code cleanup, import optimization and visualization of changes.

    Me: Open terminal, ‘git commit -m “wrote code” && git push’. Then realize I forgot to add half of the files, so I make another commit. Then realize I forgot to cleanup bad indents, so I make another commit. Then realize my code doesn’t even build, so I make another commit, etc.

    • Bob
      link
      fedilink
      27 months ago

      The only Git GUI that I find actually lets me do the basics in a simple way is GitHub desktop. It allows me to quickly see a diff of the changes, select a few lines or a chunk or all the file, it manages stashes and conflicts for me which is like 98% of my usage. Otherwise I use gitui or the git cli for anything more complex than committing and switching/merging branches.

      • @kdm@lemmy.world
        link
        fedilink
        7
        edit-2
        7 months ago

        I’ve started using LazyGit recently and I love it. It runs in CLI and essentially just maps the git commands to keyboard shortcuts. Really easy to use and learn, definitely increased my productivity

  • southsamurai
    link
    fedilink
    267 months ago

    Don’t forget us dyslexics though! Cli is rough on that, but gui tends to avoid the errors a typo can cause.

    I swear, having to copy/paste stuff in terminal to avoid typing the damn commands five times is way less convenient.

    I get it, Linux veterans love the terminal because it is efficient and capable. But there’s multiple reasons for a gui interface for common tasks, accessibility being the biggest.

      • @olutukko@lemmy.world
        link
        fedilink
        207 months ago

        It’s not locking behind terminal. It’s just not implementing gui. Which is completely valid since that takes time and effort

        • @AeonFelis@lemmy.world
          link
          fedilink
          77 months ago

          Also, writing a GUI wrapper for a terminal-only program is much easier than writing a terminal wrapper for a GUI-only program.

            • @AeonFelis@lemmy.world
              link
              fedilink
              English
              37 months ago

              What do you mean by “CTA”? How don’t see how “Call to Action” is relevant in this context, seeing how it’s more of a UX design concern than a technical thing. Or does it have some other meaning that does not appear in Google’s first page of results and that ChatGPT is not aware of, and yet “Anyone worth any kind of respect” already implements?

      • @Adanisi@lemmy.zip
        link
        fedilink
        English
        10
        edit-2
        7 months ago

        People are free to write a GUI for it, assuming it’s free software. And you are free to not use a terminal and use any GUI alternatives.

        I mean, locking things behind a GUI definitely isn’t freedom. GUIs are very limited compared to most terminal interfaces.

        • voxel
          link
          fedilink
          7
          edit-2
          7 months ago

          it’s just very hard to make a usable ui, and extremely easy to make a great cli interface

    • Rob T Firefly
      link
      fedilink
      English
      27 months ago

      I just feel like a heel using a key with a Windows logo printed on it to do anything of use in Linux.

      • @spikespaz@programming.dev
        link
        fedilink
        27 months ago

        Me too. Every once in awhile I have to remind myself that it’s not my fault that Lenovo decided to plaster a windows logo on that key. Realistically, that’s everybody’s key, and it was unfair of Microsoft to do that to us in the first place