133
submitted 2 days ago by fool@discuss.tchncs.de to c/linux@lemmy.ml

Just wondering since I know a lot of people quietly use a screen-area-select -> tesseract OCR -> clipboard shortcut.

  • I separate subjects of interest into different Firefox windows, in different workspaces -- so I have an extension title them and a startup script parse text to ask the compositor to put them in the correct workspace (lets me restart more conveniently).
  • I have automatically-set different-orientation wallpapers for using my 2-in-1 depending on whether I use it in portrait or landscape (kind of just for looks, but I don't think if anyone else adds a wallpaper change to their screen rotation keybind).
top 50 comments
sorted by: hot top controversial new old
[-] lipilee@feddit.nl 4 points 1 hour ago

I have stickers on it, some of them hand drawn by my daughters.

[-] superkret@feddit.org 7 points 4 hours ago
[-] phoenixz@lemmy.ca 7 points 3 hours ago

That's sick man! Get some help!

[-] tanisnikana@lemmy.world 3 points 3 hours ago

My applications menu icon (or the “start” menu for the philistines) is a 🐢.

[-] merthyr1831@lemmy.ml 2 points 1 hour ago
[-] olafurp@lemmy.world 1 points 2 hours ago

I use many KDE activities all mapped to a single hotkey. Meta+H, Meta+J, Meta+K, then L, Y, U, G.

I set my browser and maybe one other as sticky to show on all. I also have specific desktop picture for all of them.

On top of that I have a startup command that opens all applications I use for work. Each application is configured to open in a certain activity.

The end result is that instead of doing Alt-Tab or looking for the window I do Meta+Key and it's there in front of my eyes with focus.

[-] circuit23@lemmy.dbzer0.com 7 points 4 hours ago

I made a user for my partner

[-] fool@discuss.tchncs.de 5 points 4 hours ago

I also have a user for your partner

[-] Flax_vert@feddit.uk 0 points 4 hours ago* (last edited 4 hours ago)

Haha!

Take my poor man's gold

🏅

[-] mlg@lemmy.world 1 points 2 hours ago

I'm using XFCE with Compiz, and since I have two monitors I have a 3D octagon instead of a 3D cube desktop.

[-] driving_crooner@lemmy.eco.br 1 points 3 hours ago

I use this app (webapps is the name I think) to make apps for YouTube, Mubi and TorrentLeech and I have then pinned on the task bar and use them as apps instead of webpages. This is in my hometheater pc

[-] Korhaka@sopuli.xyz 3 points 5 hours ago

Does stuff I wrote myself count?

Apache server that has a bunch of webpages that are all configured by simple JSON files and loaded by PHP. The pages have buttons on them which when pressed enter macros. So I push "Deploy Landing Gear" and Shift+alt+F8 or some obscure as fuck combination no one would ever use normally gets pressed and the game can be set to use that keybind. Most of it is for simple immediate key presses but also made a few for macros as well.

The HTML/PHP that runs the show is a grand total of 2018 bytes, including comments. Plus a fairly bloated 2444 byte CSS file that includes some button colour options that I never use now because I decided they look ugly. Should update some of the background images though, my sheet steel Faulcon DeLacy logo looks a bit basic.

[-] Eyedust@sh.itjust.works 7 points 6 hours ago* (last edited 5 hours ago)

Maybe a bit plain since I'm only at mediocre level in my Linux journey, but I use my favorite fonts for Kitty. Recursive Mono Linear and then for italics and comments in neovim I use Recursive Mono Casual Italic.

Recursive Linear is so tidy and neat, with just the lightest touch of personality. And Casual keeps that style but tweaks it just ever so slightly to a more comic. And they have sans versions of both as well for everything else.

I also made my own Starship prompt to match my desktop. It runs an easily reconfigurable color palette and uses color coded chevrons to denote different git statuses.

[-] Kekin@lemy.lol 2 points 4 hours ago

Coming from Windows, I set up KDE's Spectacle to open with Super + Shift + S in Area Select Mode and save and copy to clipboard on click release

Maybe not as unique but kinda neat I think

[-] merthyr1831@lemmy.ml 1 points 1 hour ago

I do this too. just a very slick hot key combo imo

[-] fool@discuss.tchncs.de 2 points 4 hours ago

Not unique, but we are now kindred (I did the same <:)

[-] IsoKiero@sopuli.xyz 7 points 6 hours ago

Small thing, but I really like it: I have ~/autoclean_tmp directory on most of the hosts I use as a desktop. Then on crontab I have a find-command which automatically deletes files which are 7 days or older. I can throw stuff I download from the internet and copy from other hosts, random text files when setting up new stuff and so on in there and they just vanish after a while.

[-] friend_of_satan@lemmy.world 3 points 6 hours ago

I have the same type of thing. An alias that creates a tempdir that is based on the date, then cd's into it. Then a cron job that finds dirs that are older then N days old and deletes them. I use these for most of my scratch work. Having several days to look back at what you did and know when you did it is so nice.

[-] nycki@lemmy.world 6 points 8 hours ago

I have Syncthing set up to copy save data between my pc and steam deck, but not just for emulator stuff: its got my entire modded minecraft directory and my balatro modloader nn there too.

[-] Eyedust@sh.itjust.works 4 points 6 hours ago

Syncthing is great and incredibly easy to use. I have mine set to sync my Obsidian notes so I don't have to pay for the official service.

I have tried multiple different open source note apps that offer free local sync, but I can't find anything I like. It frustrates me because I love open source.

[-] nycki@lemmy.world 3 points 8 hours ago

wait how does your clipboard shortcut work op? that sounds nifty!

[-] fool@discuss.tchncs.de 4 points 8 hours ago

I think I mentioned it but here it is again in case the comment didnt federate

click to enlarge

# snippet based on end4 dotfiles -- FIXME edge case where a
#     preexisting tmp.png might be overwritten
# English
bind = Super+Shift,T,exec,grim -g "$(slurp $SLURP_ARGS)" "tmp.png" && tesseract -l eng "tmp.png" - | wl-copy && rm "tmp.png"
# Korean
bind = Super+Shift,K,exec,grim -g "$(slurp $SLURP_ARGS)" "tmp.png" && tesseract -l kor "tmp.png" - | wl-copy && rm "tmp.png"
# Japanese
bind = Super+Shift,J,exec,grim -g "$(slurp $SLURP_ARGS)" "tmp.png" && tesseract -l jpn "tmp.png" - | wl-copy && rm "tmp.png"

Pipe grim and slurp (selects part of the Wayland screen then copies) into a tmp.png, tesseract it into the clipboard, then delete the tmp.png. Has like 1 sec of lag tho :]

[-] Kanedias@lemmy.ml 3 points 5 hours ago

why do you even need a temporary file?

$ slurp | grim -g - - | tesseract stdin stdout -l eng+kor+jpn | wl-copy -t 'text/plain'
[-] dino@discuss.tchncs.de 4 points 9 hours ago

I type "power..." into my cli and press tab+enter to shutdown my computer. Same for reboot... 😆

[-] elo13@sopuli.xyz 1 points 1 hour ago

I do the same except I only type "pow" :P

[-] kylian0087@lemmy.dbzer0.com 1 points 8 hours ago
[-] dino@discuss.tchncs.de 2 points 7 hours ago

Because its fast and easy? And also it works regardless of what DE/WM I am using.

[-] corsicanguppy@lemmy.ca 7 points 14 hours ago

In all my servers I still have a cron->make routine running. It's a hold-over from 20 years ago and the state of IaC back then, and it's made its way onto every server I manage because it is simple and effective.

And it still does its job. 8 major RHEL releases later, and the thing it needs to do, it does.

Lennart would build 3 new daemons and link them all into dbus, I'm sure.

[-] comfy@lemmy.ml 9 points 22 hours ago

While I doubt the concept is unique, the script is: a keyboard shortcut will check the clipboard for a YouTube link and then show launcher options for mpv or yt-dlp, including launch arguments for lower quality format and audio only. It launches that in a terminal for easier handling when yt-dlp doesn't work properly (much more common if using proxies, but also if a video is age-restricted or deleted).

So when I see a yt link here, I can just copy it, keyboard shortcut and then it's playing in my local video player.

[-] prole@lemmy.blahaj.zone 1 points 4 hours ago

Uh this sounds awesome, care to share?

[-] dino@discuss.tchncs.de 4 points 9 hours ago

Uh I would be interested in that actually! Nowadays Youtube generates lots of problems with freetube due to their cookie bullshit and I feel with mpv(yt-dlp) in cli I at least have the option to see whats going on.

[-] jherazob@beehaw.org 1 points 4 hours ago
[-] SitD@lemy.lol 6 points 21 hours ago

the ability to use two Bluetooth dongles simultaneously, each for one device. try that on Microsoft's clown os and see how pressing the gamepad triggers makes the bluetooth headphones chop up the sound 😂

[-] Scott_of_the_Arctic@lemmy.world 3 points 19 hours ago

I spilled a glass of scrumpy on the keyboard and a, s, and d no longer work. So I have to use a keyboard with it.

[-] ICastFist@programming.dev 2 points 5 hours ago

So you have to use a keyboard with your keyboard...

[-] Scott_of_the_Arctic@lemmy.world 1 points 1 hour ago

With my laptop.

[-] ThemboMcBembo@beehaw.org 15 points 1 day ago

I have two mice, one for either hand, and use xinput to flip the buttons on JUST the left one. It's actually one of the main things keeping me from moving to Wayland, which doesn't seem to have the same configuration features

[-] baguettefish@discuss.tchncs.de 1 points 12 hours ago* (last edited 12 hours ago)

there are both configurable mice that let you swap mouse buttons (in the worst case in a windows virtualbox with usb passthrough) or mice that are leftie right out the get-go. those would allow you to use wayland, assuming you can afford to and want to get a new mouse.

load more comments (1 replies)
[-] monovergent@lemmy.ml 5 points 22 hours ago

The text editor shortcut on my taskbar runs a sort of autosave script in ~/.drafts. I wanted my text editor to function more like the one on my phone so I can just jot down random thoughts without going through the whole ritual of naming and saving. It creates YYYYMMDD_text in ~/.drafts (or YYYYMMDD_text_1 etc. if it already exists) and launches Pluma, which I also have configured to autosave every 10 minutes.

The other thing extends beyond Linux itself a bit. I like to joke that I have the most secure NT 4 / Windows 95 lookalike ever put together. Aside from the encrypted and hardened Debian base (/boot is also encrypted), I was in part inspired by Apple's parts pairing (yikes!). So my coreboot is configured to only accept my boot disk. If it's swapped out or missing, or if I want to boot something else, it will ask for a password. In the unlikely event my machine gets stolen, the thief must at a minimum reflash the BIOS or replace the motherboard to make it useful again. Idk, it amuses me every time I think about it.

[-] vort3@lemmy.ml 13 points 1 day ago

I use compose key sequences to save time writing out long email addresses. For example, I have something like this in my ~/.XCompose:

<Multi_key> <b> <o> <s> <at>: "myangryboss@company.com" # Email of my very angry boss

So I can just type Compose (right alt on my system), bos@ and get his email address. Less error prone than typing out emails manually.

I'm probably not the only one to use compose strings as a replacement to a text expander, but I don't know anyone else who does this.

[-] syklemil@discuss.tchncs.de 20 points 1 day ago

I suspect my habit of having an alias userctl="systemctl --user" is slightly unusual, as is running Firefox, Steam, and some other graphical programs as systemd units is somewhat unusual (e.g. mod4-enter runs systemd-run --user alacritty)

But what I'm actually pretty sure is unique is my keyboard layout. I taught myself dvorak a summer some decades ago, but the norwegian dvorak layout has some annoyances, so I've made some tweaks. Used to be a Xmodmap file, but with the switch to wayland I turned it into a file in /usr/share/X11/xkb/symbols/.

Part of what I did to teach myself dvorak and touch-typing at the same time was randomize the placement of the keycaps too. It has a side effect of being a kind of security by obscurity layer: I type quickly and confidently, but others who want to use my machines have an "uhh …" reaction.

[-] farmer_bobathan@lemmy.ml 5 points 15 hours ago* (last edited 15 hours ago)

I have been using the same userctl alias.

[-] nawordar@lemmy.ml 2 points 13 hours ago* (last edited 13 hours ago)

I didn't know about the systemd-run command. Do you use it to save the command log? I created a script conveniently named x which opens a file in a default app, in the background, so I can still use the terminal. But then I had the problem with handling logs and this sounds like a perfect solution. Gonna try it today.

As for the alias, I wanted to create a pacman-like interface for systemctl, so the commands would be much shorter, but never finished it. For example, sctl -Eun unit would be equal to sysyemctl enable --user --now unit

[-] syklemil@discuss.tchncs.de 3 points 13 hours ago

The logs are handled, but I mostly use it for command separation and control, including killing unruly child processes.

load more comments
view more: next ›
this post was submitted on 14 Jan 2025
133 points (99.3% liked)

Linux

49015 readers
676 users here now

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

Related Communities

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

founded 5 years ago
MODERATORS