├── .gitattributes ├── .gitignore ├── README.md ├── _config.yml ├── bin ├── PsGet.psm1 ├── Readme.md ├── add-font.cmd ├── add-font.ps1 ├── alias.cmd ├── apt-cyg.cmd ├── remove-font.cmd └── remove-font.ps1 ├── config.default ├── CMD Settings.reg ├── PuTTY Settings.reg ├── Readme.md ├── aliases.cmd ├── clink.lua ├── conemu.xml ├── console.xml ├── cygwin │ ├── cygwin-packages │ ├── etc │ │ ├── fstab │ │ ├── nsswitch.conf │ │ └── setup │ │ │ └── last-mirror │ └── home │ │ └── profile │ │ ├── .aliases │ │ ├── .bashrc │ │ ├── .dircolors │ │ ├── .inputrc │ │ └── .profile ├── profile.cmd ├── profile.ps1 ├── profile.sh └── putty │ ├── Sessions │ └── Default%20Settings │ └── kitty.ini ├── icons ├── shark.ico ├── shark_black.ico ├── shark_black_bold.ico ├── shark_blue.ico ├── shark_blue_bold.ico ├── shark_cyan.ico ├── shark_cyan_bold.ico ├── shark_green.ico ├── shark_green_bold.ico ├── shark_icon.pdn ├── shark_icon.psd ├── shark_icon_1.pdn ├── shark_icon_2.pdn ├── shark_icon_3.pdn ├── shark_icon_4.pdn ├── shark_icon_5.pdn ├── shark_icon_6.pdn ├── shark_icon_7.pdn ├── shark_icon_8.pdn ├── shark_magenta.ico ├── shark_magenta_bold.ico ├── shark_red.ico ├── shark_red_bold.ico ├── shark_white.ico ├── shark_white_bold.ico ├── shark_yellow.ico ├── shark_yellow_bold.ico ├── theme_shark.png ├── theme_shark_flat.png ├── theme_shark_one_dark.png └── theme_shark_one_light.png ├── installer ├── 7za.dll ├── 7za.exe ├── 7zxa.dll ├── cmd_settings.reg ├── curl-ca-bundle.crt ├── curl.exe ├── cygwin.cmd ├── grep.exe ├── libcurl.dll ├── libiconv2.dll ├── libintl3.dll ├── pcre3.dll ├── readme.txt ├── regex2.dll └── tail.exe └── modules ├── Readme.md ├── init.cmd ├── init.ps1 └── init.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/PsGet.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/PsGet.psm1 -------------------------------------------------------------------------------- /bin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/Readme.md -------------------------------------------------------------------------------- /bin/add-font.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/add-font.cmd -------------------------------------------------------------------------------- /bin/add-font.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/add-font.ps1 -------------------------------------------------------------------------------- /bin/alias.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/alias.cmd -------------------------------------------------------------------------------- /bin/apt-cyg.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c 'apt-cyg %*' -------------------------------------------------------------------------------- /bin/remove-font.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/remove-font.cmd -------------------------------------------------------------------------------- /bin/remove-font.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/bin/remove-font.ps1 -------------------------------------------------------------------------------- /config.default/CMD Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/CMD Settings.reg -------------------------------------------------------------------------------- /config.default/PuTTY Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/PuTTY Settings.reg -------------------------------------------------------------------------------- /config.default/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/Readme.md -------------------------------------------------------------------------------- /config.default/aliases.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/aliases.cmd -------------------------------------------------------------------------------- /config.default/clink.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/clink.lua -------------------------------------------------------------------------------- /config.default/conemu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/conemu.xml -------------------------------------------------------------------------------- /config.default/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/console.xml -------------------------------------------------------------------------------- /config.default/cygwin/cygwin-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/cygwin-packages -------------------------------------------------------------------------------- /config.default/cygwin/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/etc/fstab -------------------------------------------------------------------------------- /config.default/cygwin/etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/etc/nsswitch.conf -------------------------------------------------------------------------------- /config.default/cygwin/etc/setup/last-mirror: -------------------------------------------------------------------------------- 1 | http://mirrors.sonic.net/cygwin/ -------------------------------------------------------------------------------- /config.default/cygwin/home/profile/.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/home/profile/.aliases -------------------------------------------------------------------------------- /config.default/cygwin/home/profile/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/home/profile/.bashrc -------------------------------------------------------------------------------- /config.default/cygwin/home/profile/.dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/home/profile/.dircolors -------------------------------------------------------------------------------- /config.default/cygwin/home/profile/.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/home/profile/.inputrc -------------------------------------------------------------------------------- /config.default/cygwin/home/profile/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/cygwin/home/profile/.profile -------------------------------------------------------------------------------- /config.default/profile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/profile.cmd -------------------------------------------------------------------------------- /config.default/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/profile.ps1 -------------------------------------------------------------------------------- /config.default/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/profile.sh -------------------------------------------------------------------------------- /config.default/putty/Sessions/Default%20Settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/putty/Sessions/Default%20Settings -------------------------------------------------------------------------------- /config.default/putty/kitty.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/config.default/putty/kitty.ini -------------------------------------------------------------------------------- /icons/shark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark.ico -------------------------------------------------------------------------------- /icons/shark_black.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_black.ico -------------------------------------------------------------------------------- /icons/shark_black_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_black_bold.ico -------------------------------------------------------------------------------- /icons/shark_blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_blue.ico -------------------------------------------------------------------------------- /icons/shark_blue_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_blue_bold.ico -------------------------------------------------------------------------------- /icons/shark_cyan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_cyan.ico -------------------------------------------------------------------------------- /icons/shark_cyan_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_cyan_bold.ico -------------------------------------------------------------------------------- /icons/shark_green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_green.ico -------------------------------------------------------------------------------- /icons/shark_green_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_green_bold.ico -------------------------------------------------------------------------------- /icons/shark_icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon.pdn -------------------------------------------------------------------------------- /icons/shark_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon.psd -------------------------------------------------------------------------------- /icons/shark_icon_1.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_1.pdn -------------------------------------------------------------------------------- /icons/shark_icon_2.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_2.pdn -------------------------------------------------------------------------------- /icons/shark_icon_3.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_3.pdn -------------------------------------------------------------------------------- /icons/shark_icon_4.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_4.pdn -------------------------------------------------------------------------------- /icons/shark_icon_5.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_5.pdn -------------------------------------------------------------------------------- /icons/shark_icon_6.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_6.pdn -------------------------------------------------------------------------------- /icons/shark_icon_7.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_7.pdn -------------------------------------------------------------------------------- /icons/shark_icon_8.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_icon_8.pdn -------------------------------------------------------------------------------- /icons/shark_magenta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_magenta.ico -------------------------------------------------------------------------------- /icons/shark_magenta_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_magenta_bold.ico -------------------------------------------------------------------------------- /icons/shark_red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_red.ico -------------------------------------------------------------------------------- /icons/shark_red_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_red_bold.ico -------------------------------------------------------------------------------- /icons/shark_white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_white.ico -------------------------------------------------------------------------------- /icons/shark_white_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_white_bold.ico -------------------------------------------------------------------------------- /icons/shark_yellow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_yellow.ico -------------------------------------------------------------------------------- /icons/shark_yellow_bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/shark_yellow_bold.ico -------------------------------------------------------------------------------- /icons/theme_shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/theme_shark.png -------------------------------------------------------------------------------- /icons/theme_shark_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/theme_shark_flat.png -------------------------------------------------------------------------------- /icons/theme_shark_one_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/theme_shark_one_dark.png -------------------------------------------------------------------------------- /icons/theme_shark_one_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/icons/theme_shark_one_light.png -------------------------------------------------------------------------------- /installer/7za.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/7za.dll -------------------------------------------------------------------------------- /installer/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/7za.exe -------------------------------------------------------------------------------- /installer/7zxa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/7zxa.dll -------------------------------------------------------------------------------- /installer/cmd_settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/cmd_settings.reg -------------------------------------------------------------------------------- /installer/curl-ca-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/curl-ca-bundle.crt -------------------------------------------------------------------------------- /installer/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/curl.exe -------------------------------------------------------------------------------- /installer/cygwin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/cygwin.cmd -------------------------------------------------------------------------------- /installer/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/grep.exe -------------------------------------------------------------------------------- /installer/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/libcurl.dll -------------------------------------------------------------------------------- /installer/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/libiconv2.dll -------------------------------------------------------------------------------- /installer/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/libintl3.dll -------------------------------------------------------------------------------- /installer/pcre3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/pcre3.dll -------------------------------------------------------------------------------- /installer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/readme.txt -------------------------------------------------------------------------------- /installer/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/regex2.dll -------------------------------------------------------------------------------- /installer/tail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/installer/tail.exe -------------------------------------------------------------------------------- /modules/Readme.md: -------------------------------------------------------------------------------- 1 | ## Vendor 2 | 3 | Third parties software. 4 | -------------------------------------------------------------------------------- /modules/init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/modules/init.cmd -------------------------------------------------------------------------------- /modules/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/modules/init.ps1 -------------------------------------------------------------------------------- /modules/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenijo/shark/HEAD/modules/init.sh --------------------------------------------------------------------------------