v0.2.0
This project is still in a kind of "alpha" state
Added
- Shortcut file:
- Added additional command options (optional)
- Close button option
- Resizable window option
- Fixed window position option
- Window size (optional)
Improved
- Proper terminal and window closing
- Reworked the shortcut format
# Window name
name = "Text editor"
# Command to execute
command = "hx"
# Each command argument
args = []
[taskbar]
# Shortcut position on the action bar
position = 3
[[taskbar.additional_commands]]
# Command name
name = "Open folder"
# Command to execute
command = "hx"
# <FILE_PATH> or <FOLDER_PATH> will be replaced by a path selected in a dialog
args = ["<FOLDER_PATH>"]
[[taskbar.additional_commands]]
name = "Open file"
command = "hx"
args = ["<FILE_PATH>"]
[window]
resizable = true
close_button = true
fixed_position = false
size = { width = 10, height = 5 }
[terminal]
# Pad inner window
padding = [0, 0]Fixed
- Fixed a closing bug which was targeting libc-based apps