This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Copy from pipe | |
| wl-copy | |
| # Get text from buffer | |
| text="$(wl-paste)" | |
| # Remove prefix "type " if it exist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Name=AppImage | |
| Exec=/home/user/AppImages/Application.AppImage | |
| Icon=/home/user/.icons/appimage.png | |
| Type=Application | |
| Categories=Utility; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Name=ChatGPT | |
| Exec=chromium --new-window --app="https://chatgpt.com" --name="ChatGPT" --class="ChatGPT" --window-size=1200,800 --window-position=640,320 | |
| Terminal=false | |
| Type=Application | |
| Icon=/home/user/.icons/chatgpt.png | |
| StartupNotify=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Command line for libvirt | |
| <qemu:commandline> | |
| <qemu:arg value='-drive'/> | |
| <qemu:arg value='file=/var/lib/libvirt/centos.img,format=raw,if=none,id=drive-nvme-disk0'/> | |
| <qemu:arg value='-device'/> | |
| <qemu:arg value='nvme,id=drive-nvme-disk0,serial=serial0'/> | |
| </qemu:commandline> | |
| # IO tune | |
| <disk type='file' device='disk'> |