📰 GTK2 Gets an Unofficial Revival Fork for Legacy Linux Apps
A Devuan community developer has launched GTK2-NG, a fork designed to maintain compatibility for legacy GTK2 software on current Linux systems.
🔗 Source: https://linuxiac.com/gtk2-gets-an-unofficial-revival-fork-for-legacy-linux-apps/
#linux
PixiEditor
PixiEditor is a universal 2D editor that was made to provide you with tools and features for all your 2D needs. Create beautiful sprites for your games, animations, edit images, create logos. All packed up in an intuitive and familiar interface.
🔗 Links:
- Download
- Demo videos
- Features
- Website
- Source code
Organization: PixiEditor
❤️ Support the Project
If this project makes your life easier, here are a few quick ways to show some love:
⭐ Star the repo/app
☕ Buy a coffee for the developer
🛠 Contribute code, issues, or pull-requests
🏷 Tags: #Windows#Linux#MacOS#Editor#Graphic#Design
#WTF#Linux#CrazyIdea#梗
给那些经常把 vim 命令敲到各种奇怪地方的用户:
如果你把退出命令敲进 shell,那么你得到的基本上肯定是 command not found 。
那么下面的几个别名或许对你会有用:
# 退出shell
alias :q='exit'
alias :wq='exit'
# 退出shell但不保存命令历史记录
alias :q!='kill -9 $$'