aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Magdy <omar.professional8777@gmail.com>2022-06-02 14:08:03 +0200
committerOmar Magdy <omar.professional8777@gmail.com>2022-06-02 14:08:03 +0200
commit3f1f70182a80fb6ff109db783b1af97af784cbf8 (patch)
treebf022167c7c345fff273cc7b49448953f987b988
parent166551ea37b4e166508779452d52708e0b0b92a3 (diff)
downloaddotfiles-3f1f70182a80fb6ff109db783b1af97af784cbf8.tar.xz
dotfiles-3f1f70182a80fb6ff109db783b1af97af784cbf8.zip
Edited some scripts
-rw-r--r--awesome/.config/awesome/rc.lua2
-rw-r--r--kitty/.config/kitty/kitty.conf2
-rwxr-xr-xscripts/.scripts/cpp_ps.sh2
-rwxr-xr-xscripts/.scripts/pscontests.sh8
4 files changed, 9 insertions, 5 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 4deae21..2feaa9f 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -132,7 +132,7 @@ awful.util.terminal = terminal
-- awful.util.tagnames = { "➊", "➋", "➌", "➍", "➎", "➏", "➐", "➑", "➒" }
--awful.util.tagnames = { "⠐", "⠡", "⠲", "⠵", "⠻", "⠿" }
--awful.util.tagnames = { "⌘", "♐", "⌥", "ℵ" }
-awful.util.tagnames = { " WWW ", " DEV ", " STUDY ", " MUSIC ", " READING ", " LEISURE " }
+awful.util.tagnames = { " WWW ", " DEV ", " STUDY ", " MUSIC ", " MAIL ", " LEISURE " }
-- Use this : https://fontawesome.com/cheatsheet
-- awful.util.tagnames = { "", "", "", "", "" }
awful.layout.suit.tile.left.mirror = true
diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf
index 29e30b7..4da77f4 100644
--- a/kitty/.config/kitty/kitty.conf
+++ b/kitty/.config/kitty/kitty.conf
@@ -940,7 +940,7 @@ inactive_tab_font_style normal
#: The foreground and background colors
# background_opacity 0.95
-background_opacity 1.00
+background_opacity 0.90
#: The opacity of the background. A number between 0 and 1, where 1 is
#: opaque and 0 is fully transparent. This will only work if
diff --git a/scripts/.scripts/cpp_ps.sh b/scripts/.scripts/cpp_ps.sh
index edf6312..ac0eb2d 100755
--- a/scripts/.scripts/cpp_ps.sh
+++ b/scripts/.scripts/cpp_ps.sh
@@ -6,7 +6,7 @@ if [ "$input" = "y" ]; then
cd $1
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
+ touch inp
nvim main.cpp
fi
diff --git a/scripts/.scripts/pscontests.sh b/scripts/.scripts/pscontests.sh
index cfadcb1..ab35076 100755
--- a/scripts/.scripts/pscontests.sh
+++ b/scripts/.scripts/pscontests.sh
@@ -7,6 +7,10 @@ mkdir ${REPLY}
cd ${REPLY}
for p in $PROBLEMS
do
- touch $p.cpp
- echo -e "#include<bits/stdc++.h>\n\nusing namespace; std\n\nint main () {ios_base::sync_with_stdio(false);\ncin.tie(NULL);\nint tt;\nwhile(tt--){\n}}" > $p.cpp
+ mkdir $p
+ cd $p
+ 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 inp
+ cd ..
done