Houkime b6cd54a4ec add video link | il y a 2 ans | |
---|---|---|
.gitlab | il y a 4 ans | |
benches | il y a 4 ans | |
ci | il y a 5 ans | |
debian | il y a 5 ans | |
examples | il y a 4 ans | |
fuzz | il y a 6 ans | |
manual | il y a 3 ans | |
members | il y a 3 ans | |
sh-interrupt | il y a 4 ans | |
src | il y a 2 ans | |
testing | il y a 7 ans | |
tests | il y a 3 ans | |
.envrc | il y a 4 ans | |
.gitignore | il y a 5 ans | |
.gitlab-ci.yml | il y a 3 ans | |
CONTRIBUTING.md | il y a 4 ans | |
Cargo.lock | il y a 2 ans | |
Cargo.toml | il y a 2 ans | |
LICENSE | il y a 7 ans | |
Makefile | il y a 3 ans | |
README.md | il y a 2 ans | |
build.rs | il y a 5 ans | |
clippy.toml | il y a 3 ans | |
redox_linker | il y a 5 ans | |
rustfmt.toml | il y a 3 ans | |
shell.nix | il y a 4 ans | |
test.ogg | il y a 2 ans |
This is a (likely) never-to-be-upstreamed modification prototype that allows shell to make (futuristic) sounds on various actions (currently on completion). To play with it (no serious use supported):
git clone https://notabug.org/Houkime/ion-sound
cd ion-sound
cargo run --release
At the moment the startup is tied to the directory with the sound (but once started shell can go anywhere). Terrible! Raw! But i am not sure if i want to continue with ion
or use nsh
as a base. Ion moves and jitters too much, and the whole idea of having sounds in a shell is to make it a pleasant chilly experience. Dynamic sound synthesis without any files can prove cool too.
Here is a video demo of the shell at work. Behind the scenes the shell uses Kira game audio library.
Below starts original README
Ion is a modern system shell that features a simple, yet powerful, syntax. It is written entirely in Rust, which greatly increases the overall quality and security of the shell. It also offers a level of performance that exceeds that of Dash, when taking advantage of Ion's features. While it is developed alongside, and primarily for, RedoxOS, it is a fully capable on other *nix platforms.
Ion is still a WIP, and both its syntax and rules are subject to change over time. It is still quite a ways from becoming stabilized, but we are getting very close. Changes to the syntax at this time are likely to be minimal.
Ion has a RFC process for language proposals. Ion's formal specification is located within the rfcs branch. The RFC process is still in the early stages of development, so much of the current and future implementation ideas have yet to be written into the specification.
The Ion manual online is generated automatically on each commit via mdBook and hosted on Redox OS's website.
Building the manual for local reference
Sources for the manual are located in the manual
directory.
You can build the manual using
make manual
mdbook build -d ../public manual
See the examples folder and the Parallelion project
The following PPA supports the 18.04 (bionic) and 19.04 (disco) releases. Bionic builds were made using the Pop_OS PPA's rustc 1.39.0 package.
sudo add-apt-repository ppa:mmstick76/ion-shell
Those who are developing software with Rust should install the Rustup toolchain manager.
After installing rustup, run rustup override set 1.39.0
to set your Rust toolchain to the version that Ion is
targeting at the moment. To build for Redox OS, rustup override set nightly
is required to build the Redox
dependencies.
Please ensure that both cargo and rustc 1.39.0 or higher is installed for your system. Release tarballs have not been made yet due to Ion being incomplete in a few remaining areas.
git clone https://gitlab.redox-os.org/redox-os/ion/
cd ion
RUSTUP=0 make # By default RUSTUP equals 1, which is for developmental purposes
sudo make install prefix=/usr
sudo make update-shells prefix=/usr
To compile in DEBUG mode, pass
DEBUG=1
as an argument tomake
For vim/nvim users there is an officially-supported syntax highlighting plugin.
Plugin 'vmchale/ion-vim'
For emacs users there is a kindly-supported syntax highlighting plugin.
(add-to-list 'load-path (expand-file-name "/path/to/ion-mode"))
(require 'ion-mode)
(autoload 'ion-mode (locate-library "ion-mode") "Ion majore mode" t)
(add-to-list 'auto-mode-alist '("\\.ion\\'" . ion-mode))
(add-to-list 'auto-mode-alist '("/ion/initrc" . ion-mode))