ordnance_qf_17_pounder@reddthat.com to Ask Lemmy@lemmy.world · 1 day agoLinux users, what are you doing on your laptop?message-squaremessage-square73fedilinkarrow-up183arrow-down11file-text
arrow-up182arrow-down1message-squareLinux users, what are you doing on your laptop?ordnance_qf_17_pounder@reddthat.com to Ask Lemmy@lemmy.world · 1 day agomessage-square73fedilinkfile-text
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up3·13 hours agoI’m launching a Windows program through wine because I don’t know how the make the desktop shortcut do it, so I use the terminal.
minus-squarekunaltyagi@programming.devlinkfedilinkarrow-up5·8 hours agoNo need for a short cut. Just make a file on desktop with #!/usr/bin/env sh as the first line and whatever command you use in the 2nd line. Name it whatever you want. Make the file executable (chmod +x <filename>) and you have a full-cut
I’m launching a Windows program through wine because I don’t know how the make the desktop shortcut do it, so I use the terminal.
No need for a short cut. Just make a file on desktop with
#!/usr/bin/env shas the first line and whatever command you use in the 2nd line. Name it whatever you want.Make the file executable (
chmod +x <filename>) and you have a full-cut