Difference between revisions of "IT-OS-Config-Samer"
Jump to navigation
Jump to search
Samerhijazi (talk | contribs) (→Console colors) |
Samerhijazi (talk | contribs) (→Console colors) |
||
| Line 36: | Line 36: | ||
* Shema: #073642:#dc322f:#859900:#b58900:#268bd2:#ec0048:#2aa198:#94a3a5:#586e75:#cb4b16:#859900:#b58900:#268bd2:#d33682:#2aa198:#6c71c4 | * Shema: #073642:#dc322f:#859900:#b58900:#268bd2:#ec0048:#2aa198:#94a3a5:#586e75:#cb4b16:#859900:#b58900:#268bd2:#d33682:#2aa198:#6c71c4 | ||
* Arc-Theme-Colors: | * Arc-Theme-Colors: | ||
| − | + | ** #404552 (64,69,82) | |
| − | + | ** #383c4a (56,60,74) | |
| − | + | ** #4b5162 (75,81,98) | |
| − | + | ** #5294e2 (82,148,226) | |
| − | + | ** #7c818c (124,129,140) | |
==DPI-Resoulation== | ==DPI-Resoulation== | ||
Revision as of 09:08, 8 May 2020
Contents
Needed-Apps
- https://gist.github.com/grenade/6363978
- AppEditor: https://github.com/donadigo/appeditor
- gtk3-widget-factory
- gtk3-icon-browser
- https://download.jetbrains.com/fonts/JetBrainsMono-1.0.0.zip
- https://github.com/jnsh
- https://github.com/arc-design/arc-theme
- https://github.com/horst3180/arc-theme
bashrc
\[\033[0m\] #No Format \[\033[0;32m\] #Green \[\033[0;33m\] #Yellow \[\033[0;34m\] #Blue \[\033[0;36m\] #Cyan .. PS1="\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\][\w]\[\033[00m\]\n\$ " PS1="\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\][\w] \[\033[00;32m\]($(git branch 2>/dev/null | grep "^*"))\[\033[00m\]\n\$ "
alias ls='ls -alh' alias cl='clear' timestamp=$(date +%Y%m%d%H%M%S)
Console colors
- https://www.color-hex.com/color-palette/36646
- Forground: #a5a5a5 or #D3D7CF (Best)
- Background: #282A36 or #2E3436 (Best)
- Shema: #073642:#dc322f:#859900:#b58900:#268bd2:#ec0048:#2aa198:#94a3a5:#586e75:#cb4b16:#859900:#b58900:#268bd2:#d33682:#2aa198:#6c71c4
- Arc-Theme-Colors:
- #404552 (64,69,82)
- #383c4a (56,60,74)
- #4b5162 (75,81,98)
- #5294e2 (82,148,226)
- #7c818c (124,129,140)
DPI-Resoulation
- http://dpi.lv/
- HP-Box: 15.6" @ (1366 x 768) >> 100 DPI
- HP-Box: 17.3" @ (1366 x 768) >> 91 DPI
xdpyinfo | grep dots
Setting VIM
- File: .vimrc
map <C-a> <esc>ggVG<CR>
Setting OS
OS: ubuntu
- Ubuntu 18.04 LTS: ubuntu/bionic64
sudo apt install curl sudo apt install nodejs sudo apt install npm sudo apt install python ... curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" sudo apt install docker-ce sudo usermod -aG docker $USER ... sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose ... sudo apt update sudo apt-get upgrade
OS: fedora
Images
sudo dnf install ImageMagick convert howtogeek.png howtogeek.jpg convert howtogeek.png -quality 95 howtogeek.jpg convert example.png -resize 200x100 example.png convert example.png -resize 200x100! example.png convert example.png -resize 200 example.png # Width 200 convert example.png -resize x100 example.png # Hight 100