For me, it’s hands down Flameshot. The best screenshot tool in the world - I’ve got it hooked up to my PrtScrn key for super easy screenshots.

I also love Kwrite as a Notepad++ alternative, and KolourPaint as a MSPaint alternative

60 points
*
  • Amberol is probably one of the biggest hidden gems in GNOME apps. It’s a simple easy music player whose background color changes based on the song’s artwork.

  • Parabolic is another GNOME app for downloading videos from youtube using yt-dlp. It’s super easy to use and even allows for multiple concurrent downloads.

  • mpv is one of those rare moments where using a proprietary implementation is objectively worse. Must install on any personal computer/mobile device.

permalink
report
reply
20 points

Excuse my silly question, but what does mpv do that vlc doesn’t?

permalink
report
parent
reply
18 points

MPV has automatic native wayland support, VLC doesn’t (yet, see https://wiki.archlinux.org/title/VLC_media_player#Wayland_support)

I haven’t found any other large differences in functionality when it comes to simply playing video (only thing I use either one for).

permalink
report
parent
reply
14 points
*

VLC is also less accurate to the source than mpv is.

See the notice on this wiki that contains some comparisons.

I don’t know the full details but this is a quote I have seen from reddit about VLC:

  • uses wrong matrix for RGB conversion (results in wrong colors)
  • uses point upscaling for chroma planes
  • introduces strong banding
  • wrong chroma location (MPEG-1 for everything)
  • Old subtitle renderer that in more Typesetting heavy situation will say fuck you
  • all the other bugs (including some that haven’t been fixed in years) make it equally unsuitable media player.

It is probably possible to get things in order by digging into the settings in VLC, but mpv prioritizes accuracy by default.

permalink
report
parent
reply
1 point

MPV handles decoding much better than VLC, in my experience trying to watch fansubs

permalink
report
parent
reply
12 points
*

Both are comparable in terms of video playback (both use hardware acceleration and ffmpeg) but mpv’s appeal is that it’s ultimately a minimal (as in lack of apparent GUI) command line tool rather than a fully featured application like VLC. I like mpv because of it’s non-features which is why it’s the backend for a lot of Desktop environment video players.

permalink
report
parent
reply
3 points
*

If you want minimalism I advise you to use a tiling window manager instead of Gnome. If you want Wayland absolutely, use Hyprland.

permalink
report
parent
reply
7 points

I have MPV setup to play any YouTube link when I press ctrl cmd m with a YouTube video url in my clipboard.

permalink
report
parent
reply
Deleted by creator
permalink
report
parent
reply
1 point

For those who don’t know: Celluloid is a GTK4 frontend for MPV that mostly just makes it look neater.

permalink
report
parent
reply
1 point

Mpv is a good engine, but I prefer something like smplayer+mpv for all the extra functionality. I also like that VLC has tons of features, like full file/codec info and stats. I know there are other ways to get that info, but it’s very easy in vlc.

permalink
report
parent
reply
1 point

I use Lollypop for music, well in reality i just use MPV for that too lol but i downloaded that “just in case”

permalink
report
parent
reply
1 point

How does Amberol hold up with libraries in the high thousands? So many nice looking music played keep struggling with my music folders.

Really makes me miss Winamp sometimes.

permalink
report
parent
reply
2 points

Amberol does hold up really well with high threshold music folders in my experience. I had a 24+ hours worth of music that loaded successfully in less than a minute.

Amberol has a “restore playlist” feature which loads your last playlist quickly.

permalink
report
parent
reply
1 point

Why not Audacious if you want something like Winamp?

permalink
report
parent
reply
51 points
*

Firefox with tree style tabs, with the user CSS that removes tabs and combines bookmarks bar into the title bar.

Away from computer right now but I’ll take a screenshot in an hour or so.

And Emacs. :)


Back at my computer now!

OK, here’s my screenshot:

So, you can see the tree style tabs (TST) in the sidebar area on the left. I’m using the “photon” theme for TST. with another extension for TST called TST Colored Tabs. If you middle-button-click a link, it’s opened in a new tab like usual, but TST also assigns it as a child tab of the page you were viewing. It’s incredibly useful for keeping track of where you are and what you’re doing. Especially in my DevOps job, I have dozens of tabs open and chaos would reign supreme if I used top-of-window tabs like standard. You can see the bookmarks toolbar has been dragged up into the title bar using the customize toolbar window accessed by right clicking on the title bar.

To accomplish this you need to enable a setting in about:config called toolkit.legacyUserProfileCustomizations.stylesheets, set that to true. Then exit Firefox.

Then create a directory called chrome in your profile directory, which on Linux is in ~/.mozilla/firefox/PROFILENAME/, which you can get from the about:profiles page. Inside the chrome directory, you create a file called userChrome.css and add this stuff to it:

#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
  opacity: 0;
  pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
    visibility: collapse !important;
}

#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
  display: none;
}

/*
    Display the status bar in Firefox Quantum (version 61+)
    permanently at the bottom of the browser window.
    Code below works best for the Dark Firefox theme and is based on:
    https://github.com/MatMoul/firefox-gui-chrome-css/blob/master/chrome/userChrome.css
    This userChrome.css file was last modified on: 28-Jun-2018.
    Tested to work with Firefox 61 on Windows.
    Related blog post: http://www.optimiced.com/en/?p=1727
*/

#browser-bottombox {
  height: 20px;
  border-top: solid 1px #505050;
}

.browserContainer>#statuspanel {
  left: 4px !important;
  bottom: 0px;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

.browserContainer>#statuspanel>#statuspanel-inner>#statuspanel-label {
  margin-left: 0px !important;
  border: none !important;
  padding: 0px !important;
  color: #EEE !important;
  background: #333 !important;
}

window[inFullscreen="true"] #browser-bottombox {
  display: none !important;
}

window[inFullscreen="true"] .browserContainer>#statuspanel[type="overLink"] #statuspanel-label {
  display: none !important;
}

/*
  Begin section to move system UI buttons to the same UI bar/box
  as the addressbar
*/

/* Adding empty space for buttons */
#nav-bar {
	margin-right:100px;
}

/* For dragging whole window by mouse*/
#titlebar {
	appearance: none !important;
	height: 0px;
}

/*
  Fix for main menu calling by Alt button
  THIS BREAKS THE UI!!
  */
/* #titlebar > #toolbar-menubar {
	margin-top: 10px;
} */

/* Move minimize/restore/close buttons to empty space */
#TabsToolbar > .titlebar-buttonbox-container {
	display: block;
	position: absolute;
	top: 5px;
	right: 1px;
}

And there you go! TST has more tips and configuration details in its Github project: https://github.com/piroor/treestyletab and https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#for-userchromecss

permalink
report
reply
7 points

emacs with doom FTW.

Looking forward to learning how to get tree tabs in FF.

permalink
report
parent
reply
7 points

I updated my original comment above yours. I hope my comments/instructions are understandable, please let me know if I wasn’t clear on anything!

permalink
report
parent
reply
40 points

Wine/Proton. It’s a one-stop solution for gaming on Linux (for current games). Lutris is also worth mentioning as a frontend/launcher.

permalink
report
reply
7 points

Also worth mentioning Heroic Launcher. Works beautifully with the Epic store.

permalink
report
parent
reply
6 points
*

Check out Bottles for running Wine and derivatives from a GUI :)!

permalink
report
parent
reply
1 point

Although, I find it a sad commentary that the most upvoted (even by me) in this thread is something to made to run non-linux software. :(

permalink
report
parent
reply
7 points

that’s one way to look at it, but if not for WINE and proton we’d not have had the renaissance of desktop Linux that’s well under way :)

permalink
report
parent
reply
1 point

And I totally agree with you. I just lament that games and other made for Windows software is what’s enabling that. People should just want a free and opensource operating system as a matter of self interest… but no. It’s games and Windows apps. Yet another sign that our species is just sick in the head. :)

permalink
report
parent
reply
1 point
Deleted by creator
permalink
report
parent
reply
2 points

Oh we need it, it’s just how to make linux survive in a capitalist world where things are only made for platforms that can make them money.

permalink
report
parent
reply
39 points

I’m a bit of a fan of Okular. It just does a good job displaying PDFs and is not annoying. The table of content works well if the document has one. There is text select and block select for when you need to get content out of the PDF. You can tell Okular to ignore DRM with a simple checkbox in the settings, for files that “don’t allow” selecting and copying text or “don’t allow” printing.

permalink
report
reply
4 points

My only complaint about Okular is when it comes to form fillable PDFs. I usually prefer using the inbuilt Firefox pdf reader for those.

permalink
report
parent
reply
2 points

Okular also has vim keys for navigating.

permalink
report
parent
reply
24 points

gparted because it’s the best partitioning manager with a gui that I’ve used

permalink
report
reply

Linux

!linux@lemmy.ml

Create post

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

  • Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
  • No misinformation
  • No NSFW content
  • No hate speech, bigotry, etc

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

Community stats

  • 9.7K

    Monthly active users

  • 5.8K

    Posts

  • 162K

    Comments