Giter VIP home page Giter VIP logo

scripts's Introduction

I am the beginning, the end, the one who is many. I am the...

INSTALLATION

WORK IN PROGRESS

ABSTRACT

Gentoo Linux fork that works Out Of The Box (OOTB) without sacrificing end-users performance and optimization for multiple configurations including Desktop Environments (DE) and Window Managers (WM) presets.

Optionally binhosts provided by Argent GNU/Linux will/are also available in our fork, but are optional untill Argent GNU/Linux Developer team is able to make them to not sacrifice the optimization and performance.

Our goal is to make gentoo fork with additional features that works on all devices at the best possible performance and optimization.

TODO

  • Add wine-any
  • Add wine-staging in wine-any
  • Add wine-d3d9 in wine-any
  • Add DXVK
  • KSEGIS - mirror+finish
  • KULUS (Low priority) - mirror+finish
  • KAVALISE - mirror+finish
  • Add apt, dnf, pacman optionally
  • Add DE/WM with default preset
  • Add gentoo ebuilds + verified forks
  • Wikify ebuild

scripts's People

Contributors

kreyren avatar

Watchers

 avatar  avatar

Forkers

rautamiekka

scripts's Issues

QA: codestyle oneline (kreystyle) vs if..fi

Kreystyle

Abstract: Write shell/bash as effective as possible where efficiency is defined as fastest to write without mistakes and easy to read for writer and then for others with ethicacy to change the style if more effective way is proved thus feedback is welcomed with attempt to provide bash to shell compatibility where possible and assuming usage of API (https://github.com/RXT067/Scripts/tree/kreyren/kreypi) to allow passive improvements of the code.

TODO: Colemak keyboard is possible improvement for writing speed


## Current
[ ! -e '/usr/src/Wine_Appimage/build' ] && { mkdir '/usr/src/Wine_Appimage/build' || die '1' 'mkdir failed to make a new directory in /usr/src/Wine_appimage/build' ; } || debug "Directory '/usr/src/Wine_Appimage/build' already exists"

# Proposed
if [ ! -e '/usr/src/Wine_Appimage/build' ] &&
  ! mkdir '/usr/src/Wine_Appimage/build'; then
    die '1' 'mkdir failed to make a new directory in /usr/src/Wine_appimage/build'
elif [ ! -e '/usr/src/Wine_Appimage/build' ]; then
    debug "file '/usr/src/Wine_Appimage/build' already exists"
fi

investigate!

Assuming softwrap for one-line

Users with narrow terminal are concern
image

Current decision

Oneline (kreystyle)

+ oneline is faster by 2s to write
+ is shorter
- harder to read on wide terminal

Use only for short logic

if..fi

+ is more readable for more complicated logic
- takes by 2s longer to write in comparison to oneline

For longer logic if..fi should be used since it's more readable

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.