ใคใใงใซ่คๆฐใฎGitHubใใจใฎใใซใ่จญๅฎใ่กใ.
cd ~/.ssh
ssh-keygen -t rsa่ณชๅใฏEnter*3. โ โ
| # TINT2 CONFIG FILE [Vertical] | |
| #------------------------------------- | |
| # Gradients | |
| #------------------------------------- | |
| # Backgrounds | |
| # Background 1: Battery, Clock, Systray | |
| rounded = 0 | |
| border_width = 0 | |
| border_sides = TBLR |
| // create file: | |
| sudo vim /usr/share/applications/intellij.desktop | |
| // add the following | |
| [Desktop Entry] | |
| Version=13.0 | |
| Type=Application | |
| Terminal=false | |
| Icon[en_US]=/home/rob/.intellij-13/bin/idea.png | |
| Name[en_US]=IntelliJ |
You have 2 options, use the script descrived bellow or follow the instrutions
script in this gist if you want the source code
wget https://gist.githubusercontent.com/Vertecedoc4545/6e54487f07a1888b656b656c0cdd9764/raw/2c5e8ccb428fc331307e2f653cab88174c051310/build-ubuntu-23.sh
chmod +x build-ubuntu-23.sh
./build-ubuntu-23.sh| { | |
| "include": [ | |
| "." | |
| ], | |
| "exclude": [ | |
| "**/node_modules", | |
| "**/cdk.out", | |
| "**/.pytest_cache", | |
| "**/build", | |
| "**/dist", |
| # see https://www.topbug.net/blog/2013/04/14/install-and-use-gnu-command-line-tools-in-mac-os-x/ | |
| # core | |
| brew install coreutils | |
| # key commands | |
| brew install binutils | |
| brew install diffutils | |
| brew install ed --default-names | |
| brew install findutils --with-default-names |
| <profile> | |
| <id>vendor-repos</id> | |
| <activation> | |
| <property> | |
| <name>vendor-repos</name> | |
| </property> | |
| </activation> | |
| <!-- Add vendor maven repositories --> | |
| <repositories> |
| #!/bin/bash | |
| disk_item=`mount | grep disk | grep -v disk1 | grep '(ntfs' | grep 'read-only' | head -1 | awk '{print $1}'` | |
| disk_tmnt=`mount | grep disk | grep -v disk1 | grep '(ntfs' | grep 'read-only' | head -1 | awk '{print $3}'` | |
| umount $disk_item | |
| mkdir "$disk_tmnt" | |
| mount_ntfs -o rw,nobrowse $disk_item "$disk_tmnt" | |
| echo "mount the volume at mode w successfully: `mount | grep disk | grep -v disk1 | grep $disk_item`" | |
| open $disk_tmnt |
| #!/bin/bash | |
| SAVEIFS=$IFS | |
| IFS=$(echo -en "\n\b") | |
| cur=`pwd` | |
| for f in `ls` | |
| do | |
| cd "$cur/$f" && for f in {0..9} ; do if [ -e "$f.jpg" ]; then mv -- "$f.jpg" "0$f.jpg"; fi ; done |