Your Latest Workflow Improvement - Desktop Customization & Workflow
Users browsing this thread: 5 Guest(s)
|
|||
Hey there.
I know we're all interrested in improving our day-to-day tasks to make them faster, or easier to do. We all do different things to improve our workflow, and most of the time, it feels pretty good to see it working. I create this thread so we can share any snippet, trick or solution we find to improve our workflow. I'll start with a script of mine I use a lot: At work, I'm forced to use a window machine. Not a big deal as I'm allowed to run a VM on it (archlinux, for convenience). But from time to time, I need to send logfiles, memory dumps and similar to people, and this is a tedious task, as I need to copy the files from the VM to a shared folder with the host, then put it on people's desktop using the windows explorer (I'm a system admin, so that's why I have these access). I then created a script call "winput" which uses smbclient to send search netbios names on the network, and put files on the desktop of these people. Computers here are named after the login name, with 1,2 or 3 appended to it (or not): Code: #!/bin/sh Example of it running: Code: $ winput username ~/.profile And I can now si the .profile file on my desktop! Magic :D Your turn now! |
|||