Updating config based on linux laptop
This commit is contained in:
parent
e69f29cba5
commit
1e08189024
@ -164,7 +164,7 @@ client.focused_inactive #333333 #222222 #888888 #292d2e #eeeeee
|
|||||||
client.unfocused #333333 #222222 #888888 #292d2e #eeeeee
|
client.unfocused #333333 #222222 #888888 #292d2e #eeeeee
|
||||||
|
|
||||||
# Startup Applications
|
# Startup Applications
|
||||||
exec --no-startup-id "$HOME/.screenlayout/layout.sh"
|
exec --no-startup-id "$HOME/.screenlayout/launch.sh"
|
||||||
exec --no-startup-id "xmodmap $HOME/.Xmodmap"
|
exec --no-startup-id "xmodmap $HOME/.Xmodmap"
|
||||||
exec --no-startup-id "polybar"
|
exec --no-startup-id "polybar"
|
||||||
exec --no-startup-id "lxpolkit &"
|
exec --no-startup-id "lxpolkit &"
|
||||||
@ -172,4 +172,3 @@ exec --no-startup-id "lxpolkit &"
|
|||||||
# Tweak keyboard and trackpad
|
# Tweak keyboard and trackpad
|
||||||
exec --no-startup-id "synclient VertEdgeScroll=1 VertScrollDelta=-111"
|
exec --no-startup-id "synclient VertEdgeScroll=1 VertScrollDelta=-111"
|
||||||
exec --no-startup-id "setxkbmap -option caps:escape"
|
exec --no-startup-id "setxkbmap -option caps:escape"
|
||||||
exec --no-startup-id "nitrogen --restore &"
|
|
@ -618,11 +618,15 @@ Visual fill column is a package that allows you to center text and add borders t
|
|||||||
Org-roam is a plain-text knowledge management system. It brings some of Roam's more powerful features into the Org-mode ecosystem such as org-file linking, etc.
|
Org-roam is a plain-text knowledge management system. It brings some of Roam's more powerful features into the Org-mode ecosystem such as org-file linking, etc.
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
(setq jm/org-roam-directory "~/Notes")
|
||||||
|
(unless (file-directory-p jm/org-roam-directory)
|
||||||
|
(make-directory jm/org-roam-directory))
|
||||||
|
|
||||||
(use-package org-roam
|
(use-package org-roam
|
||||||
:ensure t
|
:ensure t
|
||||||
:defer
|
:defer
|
||||||
:custom
|
:custom
|
||||||
(org-roam-directory "~/Notes")
|
(org-roam-directory jm/org-roam-directory)
|
||||||
:bind (("C-c n l" . org-roam-buffer-toggle)
|
:bind (("C-c n l" . org-roam-buffer-toggle)
|
||||||
("C-c n f" . org-roam-node-find)
|
("C-c n f" . org-roam-node-find)
|
||||||
("C-c n g" . org-roam-graph)
|
("C-c n g" . org-roam-graph)
|
||||||
@ -640,8 +644,12 @@ Org-roam is a plain-text knowledge management system. It brings some of Roam's m
|
|||||||
(file "~/Notes/Templates/Project.org")
|
(file "~/Notes/Templates/Project.org")
|
||||||
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
||||||
:unnarrowed t)
|
:unnarrowed t)
|
||||||
("s" "Malware Sample" plain
|
("a" "Article" plain
|
||||||
(file "~/Notes/Templates/Sample.org")
|
(file "~/Notes/Templates/Article.org")
|
||||||
|
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
||||||
|
:unnarrowed t)
|
||||||
|
("m" "Malware Sample" plain
|
||||||
|
(file "~/Notes/Templates/Malware.org")
|
||||||
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
:target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
|
||||||
:unnarrowed t)))
|
:unnarrowed t)))
|
||||||
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
||||||
|
@ -1,2 +1,9 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
xrandr --output DP-1 --off --output DP-2 --primary --mode 3440x1440 --pos 2560x0 --rotate normal --output HDMI-1 --mode 2560x1080 --pos 0x647 --rotate normal --output DP-3 --off
|
|
||||||
|
script="$HOME/.screenlayout/layout.sh"
|
||||||
|
|
||||||
|
if [ -f "$script" ]; then
|
||||||
|
$script
|
||||||
|
fi
|
||||||
|
|
||||||
|
nitrogen --restore
|
||||||
|
Loading…
x
Reference in New Issue
Block a user