diff options
| -rwxr-xr-x | .config/qtile/autorc | 8 | ||||
| -rw-r--r-- | .config/qtile/config.py | 53 | ||||
| -rw-r--r-- | .doom.d/config.el | 2 | ||||
| -rw-r--r-- | .doom.d/custom.el | 16 | ||||
| -rw-r--r-- | .gitignore | 1 |
5 files changed, 29 insertions, 51 deletions
diff --git a/.config/qtile/autorc b/.config/qtile/autorc index e195665..217adb9 100755 --- a/.config/qtile/autorc +++ b/.config/qtile/autorc | |||
| @@ -20,8 +20,10 @@ function start() { | |||
| 20 | $($1 $2) & | 20 | $($1 $2) & |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | start nitrogen "--restore" | 23 | # monitor_settings |
| 24 | monitor_settings | ||
| 25 | caps_to_esc | 24 | caps_to_esc |
| 26 | 25 | ||
| 27 | start picom "-b -D 4 --vsync" | 26 | start nitrogen "--restore" |
| 27 | start picom "" | ||
| 28 | start spotifyd "" | ||
| 29 | start rclone "mount remote:/sync /home/jd/sync/" | ||
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 1741027..57f75d8 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py | |||
| @@ -77,11 +77,12 @@ keys = [ | |||
| 77 | 77 | ||
| 78 | Key([mod, "mod1"], "q", lazy.spawn("qutebrowser"), desc="Spawn qutebrowser"), | 78 | Key([mod, "mod1"], "q", lazy.spawn("qutebrowser"), desc="Spawn qutebrowser"), |
| 79 | Key([mod, "mod1"], "b", lazy.spawn("brave"), desc="Spawn brave"), | 79 | Key([mod, "mod1"], "b", lazy.spawn("brave"), desc="Spawn brave"), |
| 80 | Key([mod, "mod1"], "f", lazy.spawn("firefox netflix.com"), desc="Spawn firefox"), | 80 | Key([mod, "mod1"], "f", lazy.spawn("firefox-bin"), desc="Spawn firefox"), |
| 81 | Key([mod, "mod1"], "e", lazy.spawn("emacs"), desc="Spawn emacs"), | 81 | Key([mod, "mod1"], "e", lazy.spawn("emacs"), desc="Spawn emacs"), |
| 82 | Key([mod, "mod1"], "s", lazy.spawn("alacritty -e spt"), desc="Spawn spt (spotify clent)"), | 82 | Key([mod, "mod1"], "s", lazy.spawn("alacritty -e spt"), desc="Spawn spt (spotify clent)"), |
| 83 | Key([mod, "mod1"], "g", lazy.spawn("alacritty -e /home/jakub/.config/qtile/mdt_shell"), desc="connect to google coral device"), | 83 | Key([mod, "mod1"], "g", lazy.spawn("alacritty -e /home/jakub/.config/qtile/mdt_shell"), desc="connect to google coral device"), |
| 84 | Key([mod, "mod1"], "l", lazy.spawn("slock"), desc="lock desktop"), | 84 | Key([mod, "mod1"], "l", lazy.spawn("slock"), desc="lock desktop"), |
| 85 | Key([mod, "mod1"], "r", lazy.spawn("alacritty -e ranger"), desc="Spawn ranger (file manager)"), | ||
| 85 | ] | 86 | ] |
| 86 | groups_names = [ | 87 | groups_names = [ |
| 87 | "dev", | 88 | "dev", |
| @@ -171,55 +172,13 @@ screens = [ | |||
| 171 | widget.Prompt(), | 172 | widget.Prompt(), |
| 172 | widget.Sep(**transparent_sep), | 173 | widget.Sep(**transparent_sep), |
| 173 | widget.WindowName(), | 174 | widget.WindowName(), |
| 174 | widget.Net(format="↓{down} ↑{up}", foreground=YELLOW), | 175 | widget.Net(format="🌐 ↓{down} ↑{up}", foreground=YELLOW), |
| 175 | widget.Sep(**soft_sep), | 176 | widget.Sep(**soft_sep), |
| 176 | widget.CPU(format=' {load_percent}%', fontsize=12, foreground=RED), | 177 | widget.CPU(format='💻 {load_percent}%', fontsize=12, foreground=RED), |
| 177 | widget.Sep(**soft_sep), | 178 | widget.Sep(**soft_sep), |
| 178 | widget.Battery(foreground=GREEN), | 179 | widget.Battery(format='🔋 {char} {percent:2.0%} {hour:d}:{min:02d} {watt:.2f} W', foreground=GREEN), |
| 179 | widget.Sep(**soft_sep), | 180 | widget.Sep(**soft_sep), |
| 180 | widget.Clock(format='%B %-d, %H:%M', foreground=CYAN), | 181 | widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN), |
| 181 | widget.Sep(**soft_sep), | ||
| 182 | widget.CurrentScreen() | ||
| 183 | ], | ||
| 184 | 24, | ||
| 185 | margin=8, | ||
| 186 | background=BAR, | ||
| 187 | border_color=CYAN, | ||
| 188 | border_width=1 | ||
| 189 | ), | ||
| 190 | ), | ||
| 191 | Screen( | ||
| 192 | top=bar.Bar( | ||
| 193 | [ | ||
| 194 | widget.Sep(**transparent_sep), | ||
| 195 | widget.Image(filename="~/.config/qtile/python.png", margin=4), | ||
| 196 | widget.Sep(**transparent_sep), | ||
| 197 | widget.CurrentLayout(), | ||
| 198 | widget.Sep(**transparent_sep), | ||
| 199 | widget.GroupBox( | ||
| 200 | margin_y = 3, | ||
| 201 | margin_x = 0, | ||
| 202 | padding_y = 5, | ||
| 203 | padding_x = 3, | ||
| 204 | borderwidth = 3, | ||
| 205 | rounded = False, | ||
| 206 | highlight_color = LIGHT_BAR, | ||
| 207 | highlight_method = "line", | ||
| 208 | this_current_screen_border = CYAN, | ||
| 209 | this_screen_border = CYAN, | ||
| 210 | other_current_screen_border = LIGHT_BAR, | ||
| 211 | other_screen_border = LIGHT_BAR, | ||
| 212 | ), | ||
| 213 | widget.Prompt(), | ||
| 214 | widget.Sep(**transparent_sep), | ||
| 215 | widget.WindowName(), | ||
| 216 | widget.Net(format="↓{down} ↑{up}", foreground=YELLOW), | ||
| 217 | widget.Sep(**soft_sep), | ||
| 218 | widget.CPU(format=' {load_percent}%', fontsize=12, foreground=RED), | ||
| 219 | widget.Sep(**soft_sep), | ||
| 220 | widget.Battery(foreground=GREEN), | ||
| 221 | widget.Sep(**soft_sep), | ||
| 222 | widget.Clock(format='%B %-d, %H:%M', foreground=CYAN), | ||
| 223 | widget.Sep(**soft_sep), | 182 | widget.Sep(**soft_sep), |
| 224 | widget.CurrentScreen() | 183 | widget.CurrentScreen() |
| 225 | ], | 184 | ], |
diff --git a/.doom.d/config.el b/.doom.d/config.el index 589e66f..89112ea 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | user-mail-address "jdlugosz963@gmail.com") | 2 | user-mail-address "jdlugosz963@gmail.com") |
| 3 | 3 | ||
| 4 | (setq doom-theme 'doom-dracula) | 4 | (setq doom-theme 'doom-dracula) |
| 5 | (setq doom-font (font-spec :family "Mononoki Nerd Font Mono" :size 13)) | 5 | ; (setq doom-font (font-spec :family "Mononoki Nerd Font Mono" :size 13)) |
| 6 | 6 | ||
| 7 | (setq org-directory "~/org/") | 7 | (setq org-directory "~/org/") |
| 8 | 8 | ||
diff --git a/.doom.d/custom.el b/.doom.d/custom.el new file mode 100644 index 0000000..d20f917 --- /dev/null +++ b/.doom.d/custom.el | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | (custom-set-variables | ||
| 2 | ;; custom-set-variables was added by Custom. | ||
| 3 | ;; If you edit it by hand, you could mess it up, so be careful. | ||
| 4 | ;; Your init file should contain only one such instance. | ||
| 5 | ;; If there is more than one, they won't work right. | ||
| 6 | '(package-selected-packages '(pdf-tools))) | ||
| 7 | (custom-set-faces | ||
| 8 | ;; custom-set-faces was added by Custom. | ||
| 9 | ;; If you edit it by hand, you could mess it up, so be careful. | ||
| 10 | ;; Your init file should contain only one such instance. | ||
| 11 | ;; If there is more than one, they won't work right. | ||
| 12 | '(org-level-1 ((t (:inherit outline-1 :height 1.2)))) | ||
| 13 | '(org-level-2 ((t (:inherit outline-2 :height 1.1)))) | ||
| 14 | '(org-level-3 ((t (:inherit outline-3 :height 1.05)))) | ||
| 15 | '(org-level-4 ((t (:inherit outline-4 :height 1.025)))) | ||
| 16 | '(org-level-5 ((t (:inherit outline-5 :height 1.0))))) | ||
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c18dd8d --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1 @@ | |||
| __pycache__/ | |||
