mirror of https://github.com/tiyn/wiki
parent
c88a9d3419
commit
7964ab15b4
@ -1,7 +1,23 @@
|
||||
# Tablecalculation
|
||||
These are useful programs if you want to do table calculations like csv.
|
||||
|
||||
| program | description |
|
||||
| ---------- | ------------------------------------------------ |
|
||||
| sc-im | program to write and read csv data; sc improved |
|
||||
`sc-im` is a program to view and edit tables especially in csv-format.
|
||||
|
||||
## Installation
|
||||
|
||||
- `yay -S sc-im` - Install sc-im
|
||||
- `sc-im <insert-filename>.csv` - Edit files
|
||||
|
||||
## Usage
|
||||
|
||||
`sc-im` uses vim keys to move.
|
||||
You can insert text to a cell with `\` and numbers using `=`.
|
||||
You can edit existing entries with `e` for text and `E` for numbers.
|
||||
You can delete (multiple (for example `3`) rows `dr`/`d3r`, yank rows `yr`/`y3r`.
|
||||
You can delete (multiple (for example `3`) columns `dc`/`d3c`, yank rows `yc`/`y3c`.
|
||||
You can insert new rows `ir`/`i3r` or columns `ic`/`i3c`.
|
||||
|
||||
### Special numbers
|
||||
|
||||
There are some functions you can use when in numbers mode.
|
||||
|
||||
- `=@sum(<start-cell>:<end-cell>)` - Summarize all number-entries in the range of given cells
|
||||
|
@ -0,0 +1,18 @@
|
||||
# Wine
|
||||
|
||||
Wine is a compatibility layer to run windows programs on linux machines.
|
||||
|
||||
## Installation and Configuration
|
||||
|
||||
- Enable multilib support in pacman
|
||||
- `vim /etc/pacman.conf` - Uncomment the following lines
|
||||
```
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
```
|
||||
- `pacman -S wine winetricks` - Install wine and configuration helper
|
||||
- Set the global variable `WINEPREFIX` to your liking, standard is `$HOME/.wine`
|
||||
- `winetricks` - run the installation of basic windows dependencies to the wine directory
|
||||
- Move the program you want to run to `$WINEPREFIX/drive_c/`
|
||||
- `winetricks sandbox` - (Optional) if you don't want wine to set up directories or files into your home directory
|
||||
- `wine $WINEPREFIX/drive_c/<insert program>` - Run the program with wine
|
Loading…
Reference in new issue