From e57370dbf542b165e430cc8c708677625a9f8ed4 Mon Sep 17 00:00:00 2001 From: JackJ30 Date: Mon, 9 Sep 2024 00:07:54 -0400 Subject: laptop config --- .config/hypr/hyprpaper.conf | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .config/hypr/hyprpaper.conf (limited to '.config/hypr/hyprpaper.conf') diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf new file mode 100644 index 0000000..5c09733 --- /dev/null +++ b/.config/hypr/hyprpaper.conf @@ -0,0 +1,2 @@ +preload = /home/jack/.dotfiles/wallpapers/signalis.png +wallpaper = ,/home/jack/.dotfiles/wallpapers/signalis.png -- cgit v1.2.3 From e812a702bcc1c66608dfe3339ac53d4670607b2d Mon Sep 17 00:00:00 2001 From: JackJ30 Date: Mon, 9 Sep 2024 19:43:22 -0400 Subject: Wallpapers and EMACS --- .config/emacs/.gitignore | 15 +++ .config/emacs/init.el | 258 ++++++++++++++++++++++++++++++++++++++++++++ .config/hypr/hyprpaper.conf | 4 +- .config/waybar/config | 1 + .config/waybar/style.css | 12 ++- wallpapers/fogCreek.png | Bin 0 -> 5787435 bytes wallpapers/ghibliForest.png | Bin 0 -> 15822184 bytes 7 files changed, 285 insertions(+), 5 deletions(-) create mode 100644 .config/emacs/.gitignore create mode 100644 .config/emacs/init.el create mode 100644 wallpapers/fogCreek.png create mode 100644 wallpapers/ghibliForest.png (limited to '.config/hypr/hyprpaper.conf') diff --git a/.config/emacs/.gitignore b/.config/emacs/.gitignore new file mode 100644 index 0000000..c188f7b --- /dev/null +++ b/.config/emacs/.gitignore @@ -0,0 +1,15 @@ +/straight/ +/elpaca/ +/transient/ +/projectile-bookmarks.eld +/persp-confs/ +/history +/games/ +/eshell/ +/eln-cache/ +/auto-save-list/ +/.lsp-session-v1 +/.local/ +/.cache/ +/var/ +/etc/ \ No newline at end of file diff --git a/.config/emacs/init.el b/.config/emacs/init.el new file mode 100644 index 0000000..bffe787 --- /dev/null +++ b/.config/emacs/init.el @@ -0,0 +1,258 @@ +(setq make-backup-files nil + create-lockfiles nil + confirm-kill-processes nil) + +(setq inhibit-startup-message t + backup-inhibited t) + +(scroll-bar-mode -1) +(tool-bar-mode -1) +(tooltip-mode -1) +(menu-bar-mode -1) + +(setq scroll-up-aggressively nil + scroll-down-aggressively nil + scroll-conservatively 101 + display-line-numbers-type 'relative) + +(setq scroll-step 1) +(setq scroll-margin 8) + +(column-number-mode +1) +(global-display-line-numbers-mode t) +(setq-default fill-column 80) + +(electric-pair-mode +1) + +(dolist (mode '(org-mode-hook + term-mode-hook + vterm-mode-hook + shell-mode-hook + eshell-mode-hook + mu4e-main-mode-hook + mu4e-headers-mode-hook)) + (add-hook mode (lambda () (display-line-numbers-mode 0)))) + +(set-frame-parameter (selected-frame) 'alpha '(90 . 90)) +(add-to-list 'default-frame-alist '(alpha . (90 . 90))) + +(set-face-attribute 'default nil + :font "DejaVu Sans Mono" + :family "Monospace" + :height 97) +(set-face-attribute 'variable-pitch nil + :font "DejaVu Sans" + :height 97) +(set-face-attribute 'fixed-pitch nil + :font "DejaVu Sans Mono" + :family "Monospace" + :height 97) + +(defvar elpaca-installer-version 0.7) +(defvar elpaca-directory (expand-file-name "elpaca/" user-emacs-directory)) +(defvar elpaca-builds-directory (expand-file-name "builds/" elpaca-directory)) +(defvar elpaca-repos-directory (expand-file-name "repos/" elpaca-directory)) +(defvar elpaca-order '(elpaca :repo "https://github.com/progfolio/elpaca.git" + :ref nil :depth 1 + :files (:defaults "elpaca-test.el" (:exclude "extensions")) + :build (:not elpaca--activate-package))) +(let* ((repo (expand-file-name "elpaca/" elpaca-repos-directory)) + (build (expand-file-name "elpaca/" elpaca-builds-directory)) + (order (cdr elpaca-order)) + (default-directory repo)) + (add-to-list 'load-path (if (file-exists-p build) build repo)) + (unless (file-exists-p repo) + (make-directory repo t) + (when (< emacs-major-version 28) (require 'subr-x)) + (condition-case-unless-debug err + (if-let ((buffer (pop-to-buffer-same-window "*elpaca-bootstrap*")) + ((zerop (apply #'call-process `("git" nil ,buffer t "clone" + ,@(when-let ((depth (plist-get order :depth))) + (list (format "--depth=%d" depth) "--no-single-branch")) + ,(plist-get order :repo) ,repo)))) + ((zerop (call-process "git" nil buffer t "checkout" + (or (plist-get order :ref) "--")))) + (emacs (concat invocation-directory invocation-name)) + ((zerop (call-process emacs nil buffer nil "-Q" "-L" "." "--batch" + "--eval" "(byte-recompile-directory \".\" 0 'force)"))) + ((require 'elpaca)) + ((elpaca-generate-autoloads "elpaca" repo))) + (progn (message "%s" (buffer-string)) (kill-buffer buffer)) + (error "%s" (with-current-buffer buffer (buffer-string)))) + ((error) (warn "%s" err) (delete-directory repo 'recursive)))) + (unless (require 'elpaca-autoloads nil t) + (require 'elpaca) + (elpaca-generate-autoloads "elpaca" repo) + (load "./elpaca-autoloads"))) +(add-hook 'after-init-hook #'elpaca-process-queues) +(elpaca `(,@elpaca-order)) + +(elpaca elpaca-use-package + ;; Enable use-package :ensure support for Elpaca. + (elpaca-use-package-mode) + (setq elpaca-use-package-by-default t)) + +(elpaca-wait) + +(use-package diminish) +(elpaca-wait) + +(diminish 'abbrev-mode) +(auto-revert-mode 1) +(diminish 'auto-revert-mode) +(diminish 'eldoc-mode) +(diminish 'isearch-mode) +(diminish 'abbrev-mode) + +(recentf-mode 1) + +(use-package no-littering + :config + (add-to-list 'recentf-exclude + (recentf-expand-file-name no-littering-var-directory)) + (add-to-list 'recentf-exclude + (recentf-expand-file-name no-littering-etc-directory)) + (setq custom-file (no-littering-expand-etc-file-name "custom.el"))) + +(use-package gcmh + :diminish gcmh-mode + :init + (gcmh-mode 1)) + +(use-package which-key + :init (which-key-mode) + :diminish which-key-mode + :config + (setq which-key-idle-delay 3)) + +(use-package vertico + :ensure (vertico :files (:defaults "extensions/*")) + :diminish vertico-mode + :bind (:map vertico-map + ("C-n" . vertico-next) + ("C-p" . vertico-previous)) + :init + (vertico-mode 1) + ;; (vertico-flat-mode 1) + (setq vertico-count 15)) + +(use-package vertico-directory + :after vertico + :ensure nil + ;; More convenient directory navigation commands + :bind (:map vertico-map + ("RET" . vertico-directory-enter) + ("DEL" . vertico-directory-delete-char) + ("M-DEL" . vertico-directory-delete-word)) + ;; Tidy shadowed file names + :hook (rfn-eshadow-update-overlay . vertico-directory-tidy)) + +(use-package savehist + :ensure nil + :diminish savehist-mode + :init + (savehist-mode 1)) + +(use-package marginalia + :diminish marginalia-mode + :after vertico + :custom + (marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil)) + :config + (marginalia-mode)) + +(use-package consult + :config + (setq completion-in-region-function + (lambda (&rest args) + (apply (if vertico-mode + #'consult-completion-in-region + #'completion--in-region) + args))) + (consult-customize consult-buffer :preview-key "M-.")) + +(use-package orderless + :config + (setq completion-styles '(orderless) + completion-category-defaults nil + completion-category-overrides '((file (styles . (partial-completion)))))) + +(use-package doom-themes + :config + (setq doom-themes-enable-bold t + doom-themes-enable-italic t) + (load-theme 'doom-vibrant t) + (doom-themes-org-config)) + +(use-package embark + :bind + (("C-." . embark-act) + ("C-;" . embark-dwim)) + :init + (setq prefix-help-command #'embark-prefix-help-command) + :config + (setq embark--minimal-indicator-overlay nil) + (setq embark-indicators (delq 'embark-mixed-indicator embark-indicators)) + (add-to-list 'embark-indicators #'embark-minimal-indicator)) + +(use-package embark-consult + :config + (define-key embark-file-map (kbd "S") 'sudo-find-file)) + +(use-package nerd-icons) +(use-package all-the-icons) + +(use-package flyspell + :ensure nil + ;; :diminish flyspell-mode + ) + +(use-package flyspell-correct + :after flyspell) + +(use-package consult-flyspell + :ensure (consult-flyspell :host gitlab :repo "OlMon/consult-flyspell" :branch "master") + :config + ;; default settings + (setq consult-flyspell-select-function (lambda () (flyspell-correct-at-point) (consult-flyspell)) + consult-flyspell-set-point-after-word t + consult-flyspell-always-check-buffer nil)) + +(use-package rainbow-delimiters + :diminish rainbow-delimiters-mode + :hook (prog-mode . rainbow-delimiters-mode)) + +(use-package emojify + :hook (after-init . global-emojify-mode) + :config + (add-hook 'prog-mode-hook #'(lambda () (emojify-mode -1)))) + +(use-package helpful + :bind + ([remap describe-command] . helpful-command) + ([remap describe-function] . helpful-callable) + ([remap describe-variable] . helpful-variable) + ([remap describe-key] . helpful-key)) + +(use-package writeroom-mode + :diminish) + +(use-package undo-tree + :diminish undo-tree-mode + :config + (global-undo-tree-mode) + (add-hook 'authinfo-mode-hook #'(lambda () (setq-local undo-tree-auto-save-history nil))) + (defvar --undo-history-directory (concat user-emacs-directory "undotreefiles/") + "Directory to save undo history files.") + (unless (file-exists-p --undo-history-directory) + (make-directory --undo-history-directory t)) + ;; stop littering with *.~undo-tree~ files everywhere + (setq undo-tree-history-directory-alist `(("." . ,--undo-history-directory)))) + + +;; Keybinds + +(global-unset-key (kbd "C-z")) +(global-set-key (kbd "") #'keyboard-escape-quit) +(global-set-key (kbd "C-/") #'undo-tree-undo) +(global-set-key (kbd "M-/") #'undo-tree-redo) diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf index 5c09733..961f0ca 100644 --- a/.config/hypr/hyprpaper.conf +++ b/.config/hypr/hyprpaper.conf @@ -1,2 +1,2 @@ -preload = /home/jack/.dotfiles/wallpapers/signalis.png -wallpaper = ,/home/jack/.dotfiles/wallpapers/signalis.png +preload = /home/jack/.dotfiles/wallpapers/ghibliForest.png +wallpaper = ,/home/jack/.dotfiles/wallpapers/ghibliForest.png diff --git a/.config/waybar/config b/.config/waybar/config index c6ec0e0..532109d 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -16,6 +16,7 @@ }, "custom/brightness": { "exec": "get-brightness-percentage", + "interval": 1, "format": "{} 󰃝", }, "network": { diff --git a/.config/waybar/style.css b/.config/waybar/style.css index bfa642d..7e9c40e 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -8,7 +8,7 @@ window#waybar { background-color: rgba(13, 27, 42, 0.5); color: rgba(228, 228, 239, 1); - border: 1px solid rgba(238, 171, 196, 0.8); + border: 2px solid rgba(238, 171, 196, 0.8); border-radius: 10px; } @@ -36,13 +36,13 @@ window#waybar { /* background-color: #2a3f38; */ /* background-color: rgba(51, 102, 0, 0.5); */ /* margin: 0 0 0 2px; */ - /* padding: 0 3px 0 0; */ + padding: 0 0 0 15px; } tooltip { background-color: rgba(13, 27, 42, 1); color: rgba(228, 228, 239, 1); - border: 1px solid rgba(238, 171, 196, 0.8); + border: 2px solid rgba(238, 171, 196, 0.8); border-radius: 10px; } @@ -57,6 +57,7 @@ tooltip { #workspaces button.active { color: rgba(238, 171, 196, 0.8); + transition: all 150ms ease; } #workspaces button:hover { @@ -64,6 +65,11 @@ tooltip { border-color: rgba(238, 171, 196, 0.8); box-shadow: none; text-shadow: none; + transition: all 150ms ease; +} + +#workspaces button:not(:last-child) { + transition: all 150ms ease; } #network, diff --git a/wallpapers/fogCreek.png b/wallpapers/fogCreek.png new file mode 100644 index 0000000..6381292 Binary files /dev/null and b/wallpapers/fogCreek.png differ diff --git a/wallpapers/ghibliForest.png b/wallpapers/ghibliForest.png new file mode 100644 index 0000000..1c1dce4 Binary files /dev/null and b/wallpapers/ghibliForest.png differ -- cgit v1.2.3 From 632b0a5b5b8fe5456750eb030d54a52a285a6870 Mon Sep 17 00:00:00 2001 From: JackJ30 Date: Thu, 3 Oct 2024 21:54:39 -0400 Subject: changes --- .bashrc | 1 + .config/hypr/hyprlock.conf | 13 +++++++------ .config/hypr/hyprpaper.conf | 4 ++-- .config/mpd/mpd.pid | 2 +- scripts/godot | 3 +++ scripts/startup | 1 + wallpapers/snowy.png | Bin 0 -> 6936996 bytes 7 files changed, 15 insertions(+), 9 deletions(-) create mode 100755 scripts/godot create mode 100644 wallpapers/snowy.png (limited to '.config/hypr/hyprpaper.conf') diff --git a/.bashrc b/.bashrc index c1ccf49..6371ac8 100644 --- a/.bashrc +++ b/.bashrc @@ -8,3 +8,4 @@ alias ls='ls --color=auto' alias grep='grep --color=auto' PS1='\[\033[1;1m\]\u\[\033[00m\]@\[\033[34m\]\h \[\033[32m\]\w \[\033[35m\]$(git-ps1)\[\033[00m\]\$ ' + diff --git a/.config/hypr/hyprlock.conf b/.config/hypr/hyprlock.conf index fb4be3c..e12fee9 100644 --- a/.config/hypr/hyprlock.conf +++ b/.config/hypr/hyprlock.conf @@ -17,8 +17,8 @@ background { } input-field { monitor = - size = 50, 50 - outline_thickness = 3 + size = 200, 200 + outline_thickness = 15 dots_size = 0.33 # Scale of input-field height, 0.2 - 0.8 dots_spacing = 0.15 # Scale of dots' absolute size, 0.0 - 1.0 dots_center = false @@ -27,13 +27,14 @@ input-field { inner_color = rgb(200, 200, 200) font_color = rgb(10, 10, 10) fade_on_empty = true - fade_timeout = 1000 # Milliseconds before fade_on_empty is triggered. + fade_timeout = 50 # Milliseconds before fade_on_empty is triggered. hide_input = true rounding = -1 # -1 means complete rounding (circle/oval) - check_color = rgb(204, 136, 34) + check_color = rgb(100, 118, 48) fail_color = rgb(204, 34, 34) # if authentication failed, changes outer_color and fail message color - fail_text = $FAIL ($ATTEMPTS) # can be set to empty - fail_transition = 300 # transition time in ms between normal outer_color and fail_color + placeholder_text = + fail_text = ($ATTEMPTS) # can be set to empty + fail_transition = 50 # transition time in ms between normal outer_color and fail_color capslock_color = -1 numlock_color = -1 bothlock_color = -1 # when both locks are active. -1 means don't change outer color (same for above) diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf index 961f0ca..ac582db 100644 --- a/.config/hypr/hyprpaper.conf +++ b/.config/hypr/hyprpaper.conf @@ -1,2 +1,2 @@ -preload = /home/jack/.dotfiles/wallpapers/ghibliForest.png -wallpaper = ,/home/jack/.dotfiles/wallpapers/ghibliForest.png +preload = /home/jack/.dotfiles/wallpapers/snowy.png +wallpaper = ,/home/jack/.dotfiles/wallpapers/snowy.png diff --git a/.config/mpd/mpd.pid b/.config/mpd/mpd.pid index 30ed602..5ae289b 100644 --- a/.config/mpd/mpd.pid +++ b/.config/mpd/mpd.pid @@ -1 +1 @@ -1378 +1371 diff --git a/scripts/godot b/scripts/godot new file mode 100755 index 0000000..a2d74f9 --- /dev/null +++ b/scripts/godot @@ -0,0 +1,3 @@ +#!/bin/sh + +godot-mono --single-window \ No newline at end of file diff --git a/scripts/startup b/scripts/startup index 46e4c17..818acb4 100755 --- a/scripts/startup +++ b/scripts/startup @@ -7,4 +7,5 @@ mpd & dunst & waybar & hyprpaper & +hypridle & gpg-agent --daemon diff --git a/wallpapers/snowy.png b/wallpapers/snowy.png new file mode 100644 index 0000000..b1ef37f Binary files /dev/null and b/wallpapers/snowy.png differ -- cgit v1.2.3 From 84012003fe1b7a6ef5c20f132d851792e72de5fa Mon Sep 17 00:00:00 2001 From: JackJ30 Date: Sat, 5 Oct 2024 00:18:08 -0400 Subject: fix screenshot and update wallpaper --- .config/hypr/binds.conf | 5 +---- .config/hypr/hyprpaper.conf | 4 ++-- .config/mpd/mpd.pid | 2 +- README.md | 21 --------------------- install.sh | 13 +------------ scripts/discord | 3 +++ wallpapers/active/snowy-tower.png | Bin 0 -> 6936996 bytes wallpapers/fogCreek.png | Bin 5787435 -> 0 bytes wallpapers/fogForest-transformed.png | Bin 8987674 -> 0 bytes wallpapers/fogForest-transformed2.png | Bin 8071771 -> 0 bytes wallpapers/fogForest.png | Bin 2758165 -> 0 bytes wallpapers/ghibliForest.png | Bin 15822184 -> 0 bytes wallpapers/inactive/fogForest.png | Bin 0 -> 2758165 bytes wallpapers/inactive/ghibliForest.png | Bin 0 -> 15822184 bytes wallpapers/inactive/signalis.png | Bin 0 -> 205675 bytes wallpapers/signalis.png | Bin 205675 -> 0 bytes wallpapers/snowy.png | Bin 6936996 -> 0 bytes 17 files changed, 8 insertions(+), 40 deletions(-) create mode 100644 scripts/discord create mode 100644 wallpapers/active/snowy-tower.png delete mode 100644 wallpapers/fogCreek.png delete mode 100644 wallpapers/fogForest-transformed.png delete mode 100644 wallpapers/fogForest-transformed2.png delete mode 100644 wallpapers/fogForest.png delete mode 100644 wallpapers/ghibliForest.png create mode 100644 wallpapers/inactive/fogForest.png create mode 100644 wallpapers/inactive/ghibliForest.png create mode 100644 wallpapers/inactive/signalis.png delete mode 100644 wallpapers/signalis.png delete mode 100644 wallpapers/snowy.png (limited to '.config/hypr/hyprpaper.conf') diff --git a/.config/hypr/binds.conf b/.config/hypr/binds.conf index 186ee78..46e829d 100644 --- a/.config/hypr/binds.conf +++ b/.config/hypr/binds.conf @@ -12,7 +12,7 @@ bind = $mainMod, RETURN, exec, $menu bind = $mainMod, A, exec, $terminal bind = $mainMod, D, killactive, bind = $mainMod CTRL SHIFT, D, exec, hyprctl kill -bind = $mainMod CTRL, S, exec, grim -g "$(slurp)" ~/Pictures/Screenshots/$(date +'%s_grim.png') +bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" ~/Pictures/Screenshots/$(date +'%s_grim.png') bind = $mainMod, S, exec, grim -o eDP-1 ~/Pictures/Screenshots/$(date +'%s_grim.png') bind = $mainMod, M, exit, bind = $mainMod, V, togglefloating, @@ -53,9 +53,6 @@ binde = SHIFT, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDI binde = SHIFT, XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 1%- binde = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle -# screenshot + crop keybind -bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" "${HOME}/Pictures/screenshots/screenshot-$(date +%F-%T).png" - # Example special workspace (scratchpad) COMMENTED OUT FOR SCREENSHOT KEYBIND # bind = $mainMod, S, togglespecialworkspace, magic # bind = $mainMod SHIFT, S, movetoworkspace, special:magic diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf index ac582db..c759e59 100644 --- a/.config/hypr/hyprpaper.conf +++ b/.config/hypr/hyprpaper.conf @@ -1,2 +1,2 @@ -preload = /home/jack/.dotfiles/wallpapers/snowy.png -wallpaper = ,/home/jack/.dotfiles/wallpapers/snowy.png +preload = /home/jack/.dotfiles/wallpapers/active/snowy-tower.png +wallpaper = ,/home/jack/.dotfiles/wallpapers/active/snowy-tower.png diff --git a/.config/mpd/mpd.pid b/.config/mpd/mpd.pid index 5ae289b..3f3c936 100644 --- a/.config/mpd/mpd.pid +++ b/.config/mpd/mpd.pid @@ -1 +1 @@ -1371 +1344 diff --git a/README.md b/README.md index 1fca88a..3c9c9c3 100644 --- a/README.md +++ b/README.md @@ -11,24 +11,3 @@ Dependencies: - Brightnessctl - Calcurse - Pipewire - -## TODO -- [x] Lock keybind -- [x] Screenshot keybind -- [x] Reconfigure waybar (better styling + date + battery charging + working buttons) -- [x] System monitor -- [x] Wallpaper -- [ ] Multiple monitors -- [ ] Redo weird purple theme (is it gtk? gdb? fml?) -- [ ] Settings app -- [ ] Monitor scaling for laptop -- [ ] Reconfigure hyprlock, wofi, kitty -- [ ] Laptop backlight + auto suspend + volume control buttons -- [ ] Cachy browser settings -- [ ] Add more initial settings and optional app install - -## FIXES -- [ ] Discord push to talk -- [ ] Hyprshot keybind broken -- [ ] Go through env vars -- [ ] Make waybar use pipewire widget diff --git a/install.sh b/install.sh index d72e8ec..9cc6b11 100755 --- a/install.sh +++ b/install.sh @@ -1,12 +1 @@ -# install dependencies (TODO) - - -# stow dotfiles -stow hypr --adopt -stow waybar --adopt -stow fish --adopt -stow kitty --adopt -stow wofi --adopt - -# do other stuff (TODO) -git config --global core.editor "micro" +# stow . ? (TODO) diff --git a/scripts/discord b/scripts/discord new file mode 100644 index 0000000..52af980 --- /dev/null +++ b/scripts/discord @@ -0,0 +1,3 @@ +#!/bin/sh + +discord-screenaudio \ No newline at end of file diff --git a/wallpapers/active/snowy-tower.png b/wallpapers/active/snowy-tower.png new file mode 100644 index 0000000..b1ef37f Binary files /dev/null and b/wallpapers/active/snowy-tower.png differ diff --git a/wallpapers/fogCreek.png b/wallpapers/fogCreek.png deleted file mode 100644 index 6381292..0000000 Binary files a/wallpapers/fogCreek.png and /dev/null differ diff --git a/wallpapers/fogForest-transformed.png b/wallpapers/fogForest-transformed.png deleted file mode 100644 index ed786fd..0000000 Binary files a/wallpapers/fogForest-transformed.png and /dev/null differ diff --git a/wallpapers/fogForest-transformed2.png b/wallpapers/fogForest-transformed2.png deleted file mode 100644 index 476add9..0000000 Binary files a/wallpapers/fogForest-transformed2.png and /dev/null differ diff --git a/wallpapers/fogForest.png b/wallpapers/fogForest.png deleted file mode 100644 index bd58509..0000000 Binary files a/wallpapers/fogForest.png and /dev/null differ diff --git a/wallpapers/ghibliForest.png b/wallpapers/ghibliForest.png deleted file mode 100644 index 1c1dce4..0000000 Binary files a/wallpapers/ghibliForest.png and /dev/null differ diff --git a/wallpapers/inactive/fogForest.png b/wallpapers/inactive/fogForest.png new file mode 100644 index 0000000..bd58509 Binary files /dev/null and b/wallpapers/inactive/fogForest.png differ diff --git a/wallpapers/inactive/ghibliForest.png b/wallpapers/inactive/ghibliForest.png new file mode 100644 index 0000000..1c1dce4 Binary files /dev/null and b/wallpapers/inactive/ghibliForest.png differ diff --git a/wallpapers/inactive/signalis.png b/wallpapers/inactive/signalis.png new file mode 100644 index 0000000..f51166f Binary files /dev/null and b/wallpapers/inactive/signalis.png differ diff --git a/wallpapers/signalis.png b/wallpapers/signalis.png deleted file mode 100644 index f51166f..0000000 Binary files a/wallpapers/signalis.png and /dev/null differ diff --git a/wallpapers/snowy.png b/wallpapers/snowy.png deleted file mode 100644 index b1ef37f..0000000 Binary files a/wallpapers/snowy.png and /dev/null differ -- cgit v1.2.3