User Tools


start:system

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
start:system [2024/10/15 07:01] marlonivostart:system [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== Unix ======  
  
-  * [[https://wiki.marlonivo.xyz/start:system:artix|Artix Installation Guide]] to take back control over your **desktop**  
-  * [[https://wiki.marlonivo.xyz/start:system:artix|Droid Rooting Guide]] to take back control over your **phone** 
-  * [[https://wiki.marlonivo.xyz/start:system:artix|Keybindings]] to reduce space and time between mind and matter. 
-  * [[https://wiki.marlonivo.xyz/start:system:artix|Scripts]] to automate returning tasks and workflows 
- 
-Configuring those is a major step into digital sovereignty and mental independence, it includes decentralization and peer to peer based philosophy. 
- 
-===== Additions ===== 
- 
-    * [[https://wiki.marlonivo.xyz/start:system:bluetooth|Bluetooth]] integration on **desktop** 
-    * [[https://wiki.marlonivo.xyz/start:system:autologin|Autologin]] integration on **desktop**  
-    * [[https://wiki.marlonivo.xyz/start:system:autologin|Gnome-keyring]] integration for nextcloud 
-    * [[https://wiki.marlonivo.xyz/start:system:autobootstrap|Autobootstrap]] as a alternative to centralized backups for **phone** and **desktop**  
-    * [[https://wiki.marlonivo.xyz/start:system:cleaning|Minimise Space]]: your new ''%%~/home%%'' 
- 
----- 
- 
-===== Keybindings ===== 
- 
-Your scripts and key's for repetitive tasks should be unified within alignment to the UNIX-system-structure in order to create an seamless workflow. If i would start over i would begin by creating a file for writing all bindings into: 
-<code> 
-mkdir bindings && cd ~/bindings && touch bindings.md 
-</code> 
- 
-Placing it into my preferred bar and shortcut to pull it up. Then you can choose your unified shortcuts besides those that already exist, e.g <c c> for copying and <c v> for inserting. 
- 
-===== Workflows ===== 
- 
-Example of an github workflow (extremely time-consuming): 
- 
-<code> 
-cd ~/place/of/git/directory                                     - Change to directory 
-git remote set-url origin git@github.com:user/repository.git    - link local folder with server-repo 
-git pull --no-rebase origin main                                - resolve differences between server-repo and local folder 
-git add .                                                       - add changes to queue 
-git commit -m "Update"                                          - describe changes 
-git push origin main                                            - push changes in queue 
-</code> 
- 
-Example of an script to automate: 
-The following script has everything integrated, which reduces a part of the workflow to an simple `git-sync` command. Every command-bulk and most of the workflows can be reduced in time. 
-<code> 
-/$HOME/user/.zshrc 
-alias git-sync='git add . && git commit -m "Update" && git push origin main' 
-</code>