├── .gitignore ├── LICENSE ├── README.md ├── nitch.nimble ├── setup.sh ├── src ├── assets │ ├── assets.nim │ └── logos.nim ├── flags │ └── argParser.nim ├── funcs │ ├── drawing.nim │ ├── getDistroId.nim │ ├── packages │ │ ├── getDpkgPkgs.nim │ │ ├── getPacmanPkgs.nim │ │ ├── getPortagePkgs.nim │ │ ├── getRpmPkgs.nim │ │ └── getXbpsPkgs.nim │ └── perform.nim ├── nitch.nim ├── nitch.nim.cfg └── nitches │ ├── getDistro.nim │ ├── getHostname.nim │ ├── getKernel.nim │ ├── getLogo.nim │ ├── getPkgs.nim │ ├── getRam.nim │ ├── getShell.nim │ ├── getUptime.nim │ └── getUser.nim └── templates ├── bfetch ├── cfgParser.nim ├── colorTest.nim ├── data.dat ├── echo.sh ├── listFiles.nim ├── readLine.nim ├── refTest.nim ├── rxfetch ├── shellCheck.nim ├── slice.nim ├── test.cfg ├── testCounter.nim ├── testFile ├── testProc.nim └── tupleTest.nim /.gitignore: -------------------------------------------------------------------------------- 1 | nitch* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/README.md -------------------------------------------------------------------------------- /nitch.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/nitch.nimble -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/setup.sh -------------------------------------------------------------------------------- /src/assets/assets.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/assets/assets.nim -------------------------------------------------------------------------------- /src/assets/logos.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/assets/logos.nim -------------------------------------------------------------------------------- /src/flags/argParser.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/flags/argParser.nim -------------------------------------------------------------------------------- /src/funcs/drawing.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/drawing.nim -------------------------------------------------------------------------------- /src/funcs/getDistroId.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/getDistroId.nim -------------------------------------------------------------------------------- /src/funcs/packages/getDpkgPkgs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/packages/getDpkgPkgs.nim -------------------------------------------------------------------------------- /src/funcs/packages/getPacmanPkgs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/packages/getPacmanPkgs.nim -------------------------------------------------------------------------------- /src/funcs/packages/getPortagePkgs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/packages/getPortagePkgs.nim -------------------------------------------------------------------------------- /src/funcs/packages/getRpmPkgs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/packages/getRpmPkgs.nim -------------------------------------------------------------------------------- /src/funcs/packages/getXbpsPkgs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/packages/getXbpsPkgs.nim -------------------------------------------------------------------------------- /src/funcs/perform.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/funcs/perform.nim -------------------------------------------------------------------------------- /src/nitch.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitch.nim -------------------------------------------------------------------------------- /src/nitch.nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitch.nim.cfg -------------------------------------------------------------------------------- /src/nitches/getDistro.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getDistro.nim -------------------------------------------------------------------------------- /src/nitches/getHostname.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getHostname.nim -------------------------------------------------------------------------------- /src/nitches/getKernel.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getKernel.nim -------------------------------------------------------------------------------- /src/nitches/getLogo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getLogo.nim -------------------------------------------------------------------------------- /src/nitches/getPkgs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getPkgs.nim -------------------------------------------------------------------------------- /src/nitches/getRam.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getRam.nim -------------------------------------------------------------------------------- /src/nitches/getShell.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getShell.nim -------------------------------------------------------------------------------- /src/nitches/getUptime.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getUptime.nim -------------------------------------------------------------------------------- /src/nitches/getUser.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/src/nitches/getUser.nim -------------------------------------------------------------------------------- /templates/bfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/bfetch -------------------------------------------------------------------------------- /templates/cfgParser.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/cfgParser.nim -------------------------------------------------------------------------------- /templates/colorTest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/colorTest.nim -------------------------------------------------------------------------------- /templates/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/data.dat -------------------------------------------------------------------------------- /templates/echo.sh: -------------------------------------------------------------------------------- 1 | echo "Hello World!" 2 | -------------------------------------------------------------------------------- /templates/listFiles.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/listFiles.nim -------------------------------------------------------------------------------- /templates/readLine.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/readLine.nim -------------------------------------------------------------------------------- /templates/refTest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/refTest.nim -------------------------------------------------------------------------------- /templates/rxfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/rxfetch -------------------------------------------------------------------------------- /templates/shellCheck.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/shellCheck.nim -------------------------------------------------------------------------------- /templates/slice.nim: -------------------------------------------------------------------------------- 1 | const 2 | asd: string = "1234567890" 3 | 4 | 5 | echo asd[0 .. ^3] -------------------------------------------------------------------------------- /templates/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/test.cfg -------------------------------------------------------------------------------- /templates/testCounter.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/testCounter.nim -------------------------------------------------------------------------------- /templates/testFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/testFile -------------------------------------------------------------------------------- /templates/testProc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/testProc.nim -------------------------------------------------------------------------------- /templates/tupleTest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssleert/nitch/HEAD/templates/tupleTest.nim --------------------------------------------------------------------------------