add swaylock

This commit is contained in:
Sakooooo 2023-09-07 08:24:53 +04:00
parent a04442af13
commit ae4555af14
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 18 additions and 4 deletions

View file

@ -238,9 +238,7 @@
(defun sakomacs/org-mode-setup () (defun sakomacs/org-mode-setup ()
(org-indent-mode) (org-indent-mode)
(variable-pitch-mode 1) (variable-pitch-mode 1)
(auto-fill-mode 0) (visual-line-mode 1))
(visual-line-mode 1)
(setq evil-autio-indent nil))
(use-package org (use-package org
:hook (org-mode . sakomacs/org-mode-setup) :hook (org-mode . sakomacs/org-mode-setup)
@ -256,5 +254,14 @@
:custom :custom
(org-bullets-bullet-list '("" "" "" "" "" "" ""))) (org-bullets-bullet-list '("" "" "" "" "" "" "")))
;; word
(defun sakomacs/org-mode-visual-fill ()
(setq visual-fill-column-width 100
visual-fill-column-center-text t)
(visual-fill-column-mode 1))
(use-package visual-fill-column
:hook (org-mode . sakomacs/org-mode-visual-fill))
;; video ;; video
;; https://youtu.be/VcgjTEa0kU4?t=1884 ;; org-mode video https://youtu.be/PNE-mgkZ6HM?t=156

1
config/swaylock/config Normal file
View file

@ -0,0 +1 @@
image=~/background.png

View file

@ -65,6 +65,8 @@ in
hyprpaper hyprpaper
# bar # bar
(waybar.overrideAttrs (oldAttrs: { mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true "]; })) (waybar.overrideAttrs (oldAttrs: { mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true "]; }))
# lock
swaylock
eww-wayland eww-wayland
brightnessctl brightnessctl
inotify-tools inotify-tools
@ -104,6 +106,10 @@ in
source = ../../../config/waybar; source = ../../../config/waybar;
recursive = true; recursive = true;
}; };
swaylock = {
source = ../../../config/swaylock;
recursive = true;
};
}; };
}; };
}; };