mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-18 18:57:32 -08:00
add some nice wallpapers
This commit is contained in:
parent
2b19323c67
commit
4847647bd8
@ -5,87 +5,115 @@ spacer_len = 3
|
||||
wal_color = wal["colors"]
|
||||
|
||||
widget_defaults = dict(
|
||||
font='JetBrains Mono Nerd Font',
|
||||
font="JetBrains Mono Nerd Font",
|
||||
fontsize=10,
|
||||
padding=3,
|
||||
background=wal_color['color0']
|
||||
background=wal_color["color0"],
|
||||
)
|
||||
extension_defaults = widget_defaults.copy()
|
||||
|
||||
primary_widgets = [
|
||||
widget.GroupBox(urgent_border=wal_color["color0"],
|
||||
disable_drag=True,
|
||||
highlight_method="block",
|
||||
this_screen_border=wal_color["color2"],
|
||||
other_screen_border=wal_color["color6"],
|
||||
this_current_screen_border=wal_color["color2"],
|
||||
other_current_screen_border=wal_color["color6"],
|
||||
background=wal_color['color1'],
|
||||
hide_unused=True,
|
||||
visible_groups=["1", "2", "3", "4", "5"]),
|
||||
widget.TextBox(text='\uE0B0',
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
background=wal_color['color2'],
|
||||
foreground=wal_color['color1']),
|
||||
widget.GroupBox(
|
||||
urgent_border=wal_color["color0"],
|
||||
disable_drag=True,
|
||||
highlight_method="block",
|
||||
this_screen_border=wal_color["color6"],
|
||||
other_screen_border=wal_color["color2"],
|
||||
this_current_screen_border=wal_color["color6"],
|
||||
other_current_screen_border=wal_color["color2"],
|
||||
background=wal_color["color1"],
|
||||
hide_unused=True,
|
||||
visible_groups=["1", "2", "3", "4", "5"],
|
||||
),
|
||||
widget.TextBox(
|
||||
text="\uE0B0",
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
background=wal_color["color2"],
|
||||
foreground=wal_color["color1"],
|
||||
),
|
||||
# Layout Name
|
||||
widget.CurrentLayout(scale=0.6,
|
||||
foreground=wal_color['color0'],
|
||||
background=wal_color['color2']),
|
||||
widget.TextBox(text='\uE0B0',
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
background=wal_color['color1'],
|
||||
foreground=wal_color['color2']),
|
||||
widget.CurrentLayout(
|
||||
scale=0.6, foreground=wal_color["color0"], background=wal_color["color2"]
|
||||
),
|
||||
widget.TextBox(
|
||||
text="\uE0B0",
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
background=wal_color["color1"],
|
||||
foreground=wal_color["color2"],
|
||||
),
|
||||
# Window count
|
||||
widget.WindowCount(scale=0.6,
|
||||
foreground=wal_color['color0'],
|
||||
background=wal_color['color1']),
|
||||
widget.TextBox(text='\uE0B0',
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
foreground=wal_color['color1']),
|
||||
widget.WindowCount(
|
||||
scale=0.6, foreground=wal_color["color0"], background=wal_color["color1"]
|
||||
),
|
||||
widget.TextBox(
|
||||
text="\uE0B0", fontsize=17, padding=0, foreground=wal_color["color1"]
|
||||
),
|
||||
# Window Name
|
||||
widget.Spacer(length=spacer_len),
|
||||
widget.WindowName(foreground=wal_color['color2']),
|
||||
widget.WindowName(foreground=wal_color["color2"]),
|
||||
# System Tray
|
||||
widget.Systray(background=wal_color['color0'], padding=0),
|
||||
widget.Spacer(length=spacer_len,
|
||||
background=wal_color['color0']),
|
||||
widget.Systray(background=wal_color["color0"], padding=0),
|
||||
widget.Spacer(length=spacer_len, background=wal_color["color0"]),
|
||||
# Cpu
|
||||
widget.TextBox(text='\uE0B2', fontsize=17,
|
||||
padding=0, foreground=wal_color['color2'],
|
||||
background=wal_color['color0']),
|
||||
widget.CPU(format='CPU {freq_current}GHz {load_percent}%',
|
||||
update_interval=1.0,
|
||||
foreground=wal_color['color0'],
|
||||
background=wal_color['color2'],
|
||||
padding=5),
|
||||
widget.TextBox(
|
||||
text="\uE0B2",
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
foreground=wal_color["color2"],
|
||||
background=wal_color["color0"],
|
||||
),
|
||||
widget.CPU(
|
||||
format="CPU {freq_current}GHz {load_percent}%",
|
||||
update_interval=1.0,
|
||||
foreground=wal_color["color0"],
|
||||
background=wal_color["color2"],
|
||||
padding=5,
|
||||
),
|
||||
# Network
|
||||
widget.TextBox(text='\uE0B2', fontsize=17,
|
||||
padding=0, foreground=wal_color['color1'],
|
||||
background=wal_color['color2']),
|
||||
widget.Net(interface='enp4s0', format='{down} ↓↑ {up}',
|
||||
foreground=wal_color['color0'], background=wal_color['color1'],
|
||||
padding=5),
|
||||
widget.TextBox(
|
||||
text="\uE0B2",
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
foreground=wal_color["color1"],
|
||||
background=wal_color["color2"],
|
||||
),
|
||||
widget.Net(
|
||||
interface="enp4s0",
|
||||
format="{down} ↓↑ {up}",
|
||||
foreground=wal_color["color0"],
|
||||
background=wal_color["color1"],
|
||||
padding=5,
|
||||
),
|
||||
# Volume
|
||||
widget.TextBox(text='\uE0B2', fontsize=17,
|
||||
padding=0, foreground=wal_color['color2'],
|
||||
background=wal_color['color1']),
|
||||
widget.TextBox(text=' ', fontsize=14,
|
||||
foreground=wal_color['color0'],
|
||||
background=wal_color['color2']),
|
||||
widget.PulseVolume(foreground=wal_color['color0'],
|
||||
background=wal_color['color2']),
|
||||
widget.Spacer(length=spacer_len,
|
||||
background=wal_color['color2']),
|
||||
widget.TextBox(
|
||||
text="\uE0B2",
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
foreground=wal_color["color2"],
|
||||
background=wal_color["color1"],
|
||||
),
|
||||
widget.TextBox(
|
||||
text=" ",
|
||||
fontsize=14,
|
||||
foreground=wal_color["color0"],
|
||||
background=wal_color["color2"],
|
||||
),
|
||||
widget.PulseVolume(foreground=wal_color["color0"], background=wal_color["color2"]),
|
||||
widget.Spacer(length=spacer_len, background=wal_color["color2"]),
|
||||
# Clock
|
||||
widget.TextBox(text='\uE0B2', fontsize=17,
|
||||
padding=0, foreground=wal_color['color1'],
|
||||
background=wal_color['color2']),
|
||||
widget.Clock(format='%Y-%m-%d %a %I:%M %p',
|
||||
background=wal_color['color1'],
|
||||
foreground=wal_color['color0']),
|
||||
widget.Spacer(length=spacer_len,
|
||||
background=wal_color['color1']),
|
||||
widget.TextBox(
|
||||
text="\uE0B2",
|
||||
fontsize=17,
|
||||
padding=0,
|
||||
foreground=wal_color["color1"],
|
||||
background=wal_color["color2"],
|
||||
),
|
||||
widget.Clock(
|
||||
format="%Y-%m-%d %a %I:%M %p",
|
||||
background=wal_color["color1"],
|
||||
foreground=wal_color["color0"],
|
||||
),
|
||||
widget.Spacer(length=spacer_len, background=wal_color["color1"]),
|
||||
]
|
||||
|
0
.doom.d/.projectile
Normal file
0
.doom.d/.projectile
Normal file
@ -85,16 +85,19 @@
|
||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||
(setq display-line-numbers-type 'relative)
|
||||
|
||||
(after! org
|
||||
(setq org-directory "~/documents/org/")
|
||||
(setq org-capture (directory-files-recursively
|
||||
(concat org-directory "gtd/capture/") "\.org$"))
|
||||
(setq org-agenda (directory-files-recursively
|
||||
(concat org-directory "gtd/agenda/") "\.org$"))
|
||||
(setq org-todo (directory-files-recursively
|
||||
(concat org-directory "gtd/todo/") "\.org$"))
|
||||
(setq org-agenda-files (append org-capture org-agenda org-todo))
|
||||
(setq org-directory "~/documents/org/")
|
||||
(setq org-capture (directory-files-recursively
|
||||
(concat org-directory "gtd/capture/") "\.org$"))
|
||||
(setq org-agenda (directory-files-recursively
|
||||
(concat org-directory "gtd/agenda/") "\.org$"))
|
||||
(setq org-todo (directory-files-recursively
|
||||
(concat org-directory "gtd/todo/") "\.org$"))
|
||||
(setq org-agenda-files (append org-capture org-agenda org-todo))
|
||||
|
||||
(setq org-roam-directory (concat org-directory "roam"))
|
||||
(setq org-roam-db-location (concat org-directory "roam/org-roam.db"))
|
||||
|
||||
(after! org
|
||||
(setq org-todo-keywords
|
||||
(quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)")
|
||||
(sequence "WAITING(w@/!)" "HOLD(h@/!)" "|"
|
||||
|
@ -309,7 +309,8 @@ We start by simply defining the standard headers used by the three files. These
|
||||
;;nim ; python + lisp at the speed of c
|
||||
;;nix ; I hereby declare "nix geht mehr!"
|
||||
;;ocaml ; an objective camel
|
||||
org ; organize your plain life in plain text
|
||||
(org ; organize your plain life in plain text
|
||||
+roam)
|
||||
;;php ; perl's insecure younger brother
|
||||
;;plantuml ; diagrams for confusing people more
|
||||
;;purescript ; javascript, but functional
|
||||
@ -348,7 +349,6 @@ We start by simply defining the standard headers used by the three files. These
|
||||
#+end_src
|
||||
#+begin_src emacs-lisp :tangle packages.el
|
||||
(package! doct)
|
||||
|
||||
(package! org-super-agenda :recipe
|
||||
(:host github
|
||||
:repo "starr-dusT/org-super-agenda"
|
||||
@ -406,15 +406,22 @@ We start by simply defining the standard headers used by the three files. These
|
||||
Define the folder structure for my gtd-esque setup. I don't declaritvely define every file within this folder stucture, but search for .org files within four primary folders: capture, agenda, todo, and note.
|
||||
|
||||
#+begin_src emacs-lisp :tangle (if (member this-system system-category-1) "config.el" "no")
|
||||
(after! org
|
||||
(setq org-directory "~/documents/org/")
|
||||
(setq org-capture (directory-files-recursively
|
||||
(concat org-directory "gtd/capture/") "\.org$"))
|
||||
(setq org-agenda (directory-files-recursively
|
||||
(concat org-directory "gtd/agenda/") "\.org$"))
|
||||
(setq org-todo (directory-files-recursively
|
||||
(concat org-directory "gtd/todo/") "\.org$"))
|
||||
(setq org-agenda-files (append org-capture org-agenda org-todo))
|
||||
(setq org-directory "~/documents/org/")
|
||||
(setq org-capture (directory-files-recursively
|
||||
(concat org-directory "gtd/capture/") "\.org$"))
|
||||
(setq org-agenda (directory-files-recursively
|
||||
(concat org-directory "gtd/agenda/") "\.org$"))
|
||||
(setq org-todo (directory-files-recursively
|
||||
(concat org-directory "gtd/todo/") "\.org$"))
|
||||
(setq org-agenda-files (append org-capture org-agenda org-todo))
|
||||
#+end_src
|
||||
** Org-Roam
|
||||
|
||||
I'm attempting to use [[https://github.com/org-roam/org-roam][Org-Roam]] to implement something of the Zettelkasten method. I know... I know it is the flavor of the month, but I've tried to develop my own notetaking methods and workflow and found myself paralyzed by choice. So I'll give this a try!
|
||||
|
||||
#+begin_src emacs-lisp :tangle (if (member this-system system-category-1) "config.el" "no")
|
||||
(setq org-roam-directory (concat org-directory "roam"))
|
||||
(setq org-roam-db-location (concat org-directory "roam/org-roam.db"))
|
||||
#+end_src
|
||||
** Get Things Done (GTD)
|
||||
*** Tasks
|
||||
@ -422,6 +429,7 @@ Define the folder structure for my gtd-esque setup. I don't declaritvely define
|
||||
Define the org todo keywords we'll use.
|
||||
|
||||
#+begin_src emacs-lisp :tangle (if (member this-system system-category-1) "config.el" "no")
|
||||
(after! org
|
||||
(setq org-todo-keywords
|
||||
(quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)")
|
||||
(sequence "WAITING(w@/!)" "HOLD(h@/!)" "|"
|
||||
|
@ -35,7 +35,7 @@
|
||||
;;deft ; notational velocity for Emacs
|
||||
doom ; what makes DOOM look the way it does
|
||||
doom-dashboard ; a nifty splash screen for Emacs
|
||||
;;doom-quit ; DOOM quit-message prompts when you quit Emacs
|
||||
doom-quit ; DOOM quit-message prompts when you quit Emacs
|
||||
;;(emoji +unicode) ; 🙂
|
||||
;;fill-column ; a `fill-column' indicator
|
||||
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
||||
@ -152,7 +152,8 @@
|
||||
;;nim ; python + lisp at the speed of c
|
||||
;;nix ; I hereby declare "nix geht mehr!"
|
||||
;;ocaml ; an objective camel
|
||||
org ; organize your plain life in plain text
|
||||
(org ; organize your plain life in plain text
|
||||
+roam)
|
||||
;;php ; perl's insecure younger brother
|
||||
;;plantuml ; diagrams for confusing people more
|
||||
;;purescript ; javascript, but functional
|
||||
|
@ -54,7 +54,6 @@
|
||||
;;(unpin! t)
|
||||
|
||||
(package! doct)
|
||||
|
||||
(package! org-super-agenda :recipe
|
||||
(:host github
|
||||
:repo "starr-dusT/org-super-agenda"
|
||||
|
10
.gitignore
vendored
10
.gitignore
vendored
@ -28,7 +28,6 @@
|
||||
!/.config/fish
|
||||
!/.config/mpd
|
||||
!/.config/ncmpcpp
|
||||
!/.config/nvim
|
||||
!/.config/rofi
|
||||
|
||||
### ~/.config/retroarch
|
||||
@ -40,3 +39,12 @@
|
||||
!/.config/qtile
|
||||
/.config/qtile/__pycache__
|
||||
/.config/qtile/settings/__pycache__
|
||||
|
||||
### ~/media/pictures/wallpapers/tracked_wallpapers
|
||||
!/media/
|
||||
/media/*
|
||||
!/media/pictures
|
||||
/media/pictures/*
|
||||
!/media/pictures/wallpapers
|
||||
/media/pictures/wallpapers/*
|
||||
!/media/pictures/wallpapers/tracked_wallpapers
|
||||
|
BIN
media/pictures/wallpapers/tracked_wallpapers/earth.png
Executable file
BIN
media/pictures/wallpapers/tracked_wallpapers/earth.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 14 MiB |
BIN
media/pictures/wallpapers/tracked_wallpapers/halo-infinite-2560×1440.jpg
Executable file
BIN
media/pictures/wallpapers/tracked_wallpapers/halo-infinite-2560×1440.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 621 KiB |
BIN
media/pictures/wallpapers/tracked_wallpapers/mars.png
Executable file
BIN
media/pictures/wallpapers/tracked_wallpapers/mars.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 14 MiB |
BIN
media/pictures/wallpapers/tracked_wallpapers/sierra_red_mountains.jpg
Executable file
BIN
media/pictures/wallpapers/tracked_wallpapers/sierra_red_mountains.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 3.0 MiB |
BIN
media/pictures/wallpapers/tracked_wallpapers/sulphur-mountain.jpg
Executable file
BIN
media/pictures/wallpapers/tracked_wallpapers/sulphur-mountain.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 755 KiB |
Loading…
x
Reference in New Issue
Block a user