aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2024-05-01 02:47:01 +0300
committeromagdy7 <omar.professional8777@gmail.com>2024-05-01 02:47:01 +0300
commitca76beb3f3568ae2f89ba1e83f80a7f77c41b74c (patch)
treeaeaf230ec9231c74769ddcc124ca35af957b3c80
parent377d5646e6dd9e3f8cfd1bc818e98c3fb02ea1be (diff)
downloaddotfiles-ca76beb3f3568ae2f89ba1e83f80a7f77c41b74c.tar.xz
dotfiles-ca76beb3f3568ae2f89ba1e83f80a7f77c41b74c.zip
Added zathurarc and rofi config to dotfiles
m---------rofi/.config/rofi/basic0
-rw-r--r--rofi/.config/rofi/colors.rasi10
-rw-r--r--rofi/.config/rofi/config.rasi18
-rw-r--r--rofi/.config/rofi/launcher2.rasi117
-rw-r--r--rofi/.config/rofi/themes/dracula.rasi11
-rw-r--r--rofi/.config/rofi/themes/everblush.rasi11
-rw-r--r--rofi/.config/rofi/themes/forest.rasi11
-rw-r--r--rofi/.config/rofi/themes/gruv.rasi11
-rw-r--r--rofi/.config/rofi/themes/nord.rasi11
-rw-r--r--rofi/.config/rofi/themes/onedark.rasi11
-rw-r--r--zathura/.config/zathura/zathurarc1
-rw-r--r--zsh/.zshrc11
12 files changed, 216 insertions, 7 deletions
diff --git a/rofi/.config/rofi/basic b/rofi/.config/rofi/basic
new file mode 160000
+Subproject 5350da41a11814f950c3354f090b90d4674a95c
diff --git a/rofi/.config/rofi/colors.rasi b/rofi/.config/rofi/colors.rasi
new file mode 100644
index 0000000..1255159
--- /dev/null
+++ b/rofi/.config/rofi/colors.rasi
@@ -0,0 +1,10 @@
+/* colors */
+
+* {
+ al: #00000000;
+ bg: #1F1F1FFF;
+ bga: #ffb30033;
+ bar: #1F1F1FFF;
+ fg: #FFFFFFFF;
+ ac: #f15495ff;
+}
diff --git a/rofi/.config/rofi/config.rasi b/rofi/.config/rofi/config.rasi
new file mode 100644
index 0000000..fb503d3
--- /dev/null
+++ b/rofi/.config/rofi/config.rasi
@@ -0,0 +1,18 @@
+configuration{
+ modi: "run,drun,window";
+ icon-theme: "Oranchelo";
+ show-icons: true;
+ terminal: "alacritty";
+ drun-display-format: "{icon} {name}";
+ location: 0;
+ disable-history: false;
+ hide-scrollbar: true;
+ display-drun: "  Apps ";
+ display-run: "  Run ";
+ display-window: " 﩯 Window";
+ display-Network: " 󰤨 Network";
+ sidebar-mode: true;
+}
+
+@theme "catppuccin-mocha"
+
diff --git a/rofi/.config/rofi/launcher2.rasi b/rofi/.config/rofi/launcher2.rasi
new file mode 100644
index 0000000..011e631
--- /dev/null
+++ b/rofi/.config/rofi/launcher2.rasi
@@ -0,0 +1,117 @@
+/*
+ *
+ * Original Author : Aditya Shakya
+ * Author : DN-debug
+ *
+ */
+
+configuration {
+ font: "Noto sans 12";
+ show-icons: true;
+ icon-theme: "";
+ display-drun: "";
+ drun-display-format: "{name}";
+ disable-history: true;
+ fullscreen: false;
+ hide-scrollbar: true;
+ sidebar-mode: false;
+}
+
+@import "colors.rasi"
+
+* {
+ background-color: @al;
+ text-color: #eeeeee;
+}
+
+
+window {
+ transparency: "real";
+ background-color: #101010A9;
+ text-color: #eeeeee;
+ border: 0px;
+ border-color: @ac;
+ border-radius: 5px;
+ height: 90%;
+ width: 96%;
+ location: northwest;
+ x-offset: 2%;
+ y-offset: 5%;
+}
+
+
+entry {
+ background-color: #000000;
+ text-color: white;
+ expand: false;
+ horizontal-align: 50%;
+ placeholder: "Type to search";
+ margin: 0% 0% 0% 37%;
+ padding: 1.5% 5.5%;
+ blink: true;
+}
+
+inputbar {
+ children: [ entry ];
+ background-color: #00000000;
+ text-color: @bg;
+ expand: false;
+ border: 0% 0% 0% 0%;
+ border-radius: 0px;
+ border-color: @ac;
+ margin: 0% 0% 0% 0%;
+ padding: 1.5%;
+}
+
+listview {
+ background-color: @al;
+ padding: 0px;
+ columns: 5;
+ lines: 5;
+ spacing: 0%;
+ cycle: false;
+ dynamic: true;
+ layout: vertical;
+}
+
+mainbox {
+ background-color: @al;
+ border: 0% 0% 0% 0%;
+ border-radius: 0% 0% 0% 0%;
+ border-color: @al;
+ children: [ inputbar, listview ];
+ spacing: 0%;
+ padding: 0%;
+}
+
+element {
+ background-color: @al;
+ text-color: #eeeeee;
+ orientation: horizontal;
+ border-radius: 5%;
+ padding: 2% 1% 2% 1%;
+}
+
+element-icon {
+ size: 48px;
+ border: 0px;
+}
+
+element-text {
+ expand: true;
+ horizontal-align: 0.5;
+ vertical-align: 0.5;
+ margin: 0.5% 0.5% -0.5% 0.5%;
+}
+
+element selected {
+ background-color: @sa;
+ text-color: #ffffff;
+ border: 0% 0% 0% 0%;
+ border-radius: 12px;
+ border-color: @al;
+}
+
+element-text selected {
+ text-color: @ac;
+}
diff --git a/rofi/.config/rofi/themes/dracula.rasi b/rofi/.config/rofi/themes/dracula.rasi
new file mode 100644
index 0000000..cc3fd9b
--- /dev/null
+++ b/rofi/.config/rofi/themes/dracula.rasi
@@ -0,0 +1,11 @@
+* {
+ bg-col: #282a36;
+ bg-col-light: #44475a;
+ border-col: #44475a;
+ selected-col: #44475a;
+ blue: #bd93f9;
+ fg-col: #f8f8f2;
+ fg-col2: #ffffff;
+ grey: #6272a4;
+ width: 600;
+}
diff --git a/rofi/.config/rofi/themes/everblush.rasi b/rofi/.config/rofi/themes/everblush.rasi
new file mode 100644
index 0000000..0d5ab21
--- /dev/null
+++ b/rofi/.config/rofi/themes/everblush.rasi
@@ -0,0 +1,11 @@
+* {
+ bg-col: #181f21;
+ bg-col-light: #22292b;
+ border-col: #272e30;
+ selected-col: #31383a;
+ blue: #67b0e8;
+ fg-col: #dadada;
+ fg-col2: #d5d5d5;
+ grey: #363d3f;
+ width: 600;
+}
diff --git a/rofi/.config/rofi/themes/forest.rasi b/rofi/.config/rofi/themes/forest.rasi
new file mode 100644
index 0000000..8523049
--- /dev/null
+++ b/rofi/.config/rofi/themes/forest.rasi
@@ -0,0 +1,11 @@
+* {
+ bg-col: #2B3339;
+ bg-col-light: #333b41;
+ border-col: #333b41;
+ selected-col: #333b41;
+ blue: #87c095;
+ fg-col: #b4bbc8;
+ fg-col2: #e67e80;
+ grey: #545c62;
+ width: 600;
+}
diff --git a/rofi/.config/rofi/themes/gruv.rasi b/rofi/.config/rofi/themes/gruv.rasi
new file mode 100644
index 0000000..834e66c
--- /dev/null
+++ b/rofi/.config/rofi/themes/gruv.rasi
@@ -0,0 +1,11 @@
+* {
+ bg-col: #1e2122;
+ bg-col-light: #26292a;
+ border-col: #282b2c;
+ selected-col: #242728;
+ blue: #8dae88;
+ fg-col: #d4be98;
+ fg-col2: #df736d;
+ grey: #5b5e5f;
+ width: 600;
+}
diff --git a/rofi/.config/rofi/themes/nord.rasi b/rofi/.config/rofi/themes/nord.rasi
new file mode 100644
index 0000000..a50eb45
--- /dev/null
+++ b/rofi/.config/rofi/themes/nord.rasi
@@ -0,0 +1,11 @@
+* {
+ bg-col: #2E3440;
+ bg-col-light: #343a46;
+ border-col: #343a46;
+ selected-col: #343a46;
+ blue: #81A1C1;
+ fg-col: #b4bbc8;
+ fg-col2: #BF616A;
+ grey: #646a76;
+ width: 600;
+}
diff --git a/rofi/.config/rofi/themes/onedark.rasi b/rofi/.config/rofi/themes/onedark.rasi
new file mode 100644
index 0000000..cb40d7c
--- /dev/null
+++ b/rofi/.config/rofi/themes/onedark.rasi
@@ -0,0 +1,11 @@
+* {
+ bg-col: #1e222a;
+ bg-col-light: #282c34;
+ border-col: #282c34;
+ selected-col: #282c34;
+ blue: #61afef;
+ fg-col: #abb2bf;
+ fg-col2: #e06c75;
+ grey: #565c64;
+ width: 600;
+}
diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc
new file mode 100644
index 0000000..ea10740
--- /dev/null
+++ b/zathura/.config/zathura/zathurarc
@@ -0,0 +1 @@
+set selection-clipboard clipboard
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 376e080..fe062c3 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -2,11 +2,7 @@ export CPLUS_INCLUDE_PATH="$HOME/programming/cppDev/imgui/imgui/backends:$HOME/p
# export C_INCLUDE_PATH="/usr/lib/gcc/arm-none-eabi/13.2.0/include/:$HOME/programming/thirdparties/tiva-c/:$HOME/programming/thirdparties/tiva-c/third_party/FreeRTOS/Source/include/:$HOME/programming/thirdparties/tiva-c/boards/ek-tm4c123gxl/freertos_demo/:"
export C_INCLUDE_PATH="/usr/lib/gcc/arm-none-eabi/13.2.0/include/:$HOME/programming/thirdparties/tiva-c/"
export ZSH="/home/$USER/.oh-my-zsh"
-export ANDROID_HOME=$HOME/Android/Sdk
export PATH="$PATH:/usr/bin/docker:/usr/local/arm-cross-compiler/install/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/bin:/home/omar/Android/Sdk"
-export PATH=$PATH:$ANDROID_HOME/emulator/
-export PATH=$PATH:$ANDROID_HOME/tools
-export PATH=$PATH:$ANDROID_HOME/platform-tools
export PATH="$PATH":"$HOME/.pub-cache/bin"
export PATH="$PATH:/opt/usr/bin/"
@@ -105,8 +101,9 @@ ex ()
fi
}
+
## cd + ls ##
-cl() {
+function cl() {
cd "$@" && ls
}
@@ -121,14 +118,14 @@ fcd() {
fo() {
local dir
- dir=$(find /run/media/Storage/omar/College -type d | fzf)
+ dir=$(find /run/media/omar/Storage/omar/College -type d | fzf)
if [[ -n $dir ]]; then
cd "$dir"
fi
-
}
bindkey '^k' up-line-or-beginning-search
bindkey '^j' down-line-or-beginning-search
+bindkey '^o' clear-screen
colorscript random