diff options
| author | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-30 16:25:07 +0200 |
|---|---|---|
| committer | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-30 16:25:07 +0200 |
| commit | 80a5b49a19f79b871a56468ac5f4025f8690f619 (patch) | |
| tree | b11706271a0aae558157dabdebd05d4c20fbdf18 | |
| parent | 563b5618f419397c81cbd1e90fa671c972a03135 (diff) | |
| download | dotfiles-80a5b49a19f79b871a56468ac5f4025f8690f619.tar.xz dotfiles-80a5b49a19f79b871a56468ac5f4025f8690f619.zip | |
Updated some files
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | aliases/.aliases/aliases | 1 | ||||
| -rw-r--r-- | screenshots/ArchLinux.png (renamed from Screenshots/ArchLinux.png) | bin | 867512 -> 867512 bytes | |||
| -rw-r--r-- | screenshots/ArchLinux2.png (renamed from Screenshots/ArchLinux2.png) | bin | 839231 -> 839231 bytes | |||
| -rwxr-xr-x | scripts/.scripts/cpp_ps.sh | 7 | ||||
| -rw-r--r-- | tmux/.tmux/.tmux.conf | 3 |
6 files changed, 12 insertions, 4 deletions
@@ -1,2 +1,5 @@ -# pengu +# Dotfiles This repo will contain all of the stuff I use to customize my OS(dot files, scripts , ...) + +# Screenshots + diff --git a/aliases/.aliases/aliases b/aliases/.aliases/aliases index 52428c0..765414e 100644 --- a/aliases/.aliases/aliases +++ b/aliases/.aliases/aliases @@ -1,3 +1,4 @@ +alias build="./main < inp" alias clean="~/.scripts/cleanup.sh" alias lg="lazygit" alias vcpp="~/.scripts/cpp_ps.sh" diff --git a/Screenshots/ArchLinux.png b/screenshots/ArchLinux.png Binary files differindex 3df3e5b..3df3e5b 100644 --- a/Screenshots/ArchLinux.png +++ b/screenshots/ArchLinux.png diff --git a/Screenshots/ArchLinux2.png b/screenshots/ArchLinux2.png Binary files differindex b8f431a..b8f431a 100644 --- a/Screenshots/ArchLinux2.png +++ b/screenshots/ArchLinux2.png diff --git a/scripts/.scripts/cpp_ps.sh b/scripts/.scripts/cpp_ps.sh index b4cd9a4..edf6312 100755 --- a/scripts/.scripts/cpp_ps.sh +++ b/scripts/.scripts/cpp_ps.sh @@ -4,9 +4,10 @@ read input if [ "$input" = "y" ]; then mkdir $1 cd $1 - touch $1.cpp - echo -e "#include<bits/stdc++.h>\n\nusing namespace std;\n\nint main () {\n\tios_base::sync_with_stdio(false);\n\tcin.tie(NULL);\n\tint tt;\n\tcin >> tt;\n\twhile(tt--){\n\n\t}\n}" > $1.cpp - nvim $1.cpp + touch main.cpp + echo -e "#include<bits/stdc++.h>\n\nusing namespace std;\n\nint main () {\n\tios_base::sync_with_stdio(false);\n\tcin.tie(NULL);\n\tint tt;\n\tcin >> tt;\n\twhile(tt--){\n\n\t}\n}" > main.cpp + touch input.txt + nvim main.cpp fi diff --git a/tmux/.tmux/.tmux.conf b/tmux/.tmux/.tmux.conf index 856665a..0400870 100644 --- a/tmux/.tmux/.tmux.conf +++ b/tmux/.tmux/.tmux.conf @@ -20,6 +20,9 @@ set -s focus-events on set -g prefix2 C-a # GNU-Screen compatible prefix bind C-a send-prefix -2 + +set -g mouse on # Enabling mouse + set -q -g status-utf8 on # expect UTF-8 (tmux < 2.2) setw -q -g utf8 on |
