Test commit

This commit is contained in:
Random936
2024-05-17 23:02:01 -07:00
parent 987b94bf5d
commit f04f791a84
5 changed files with 23 additions and 19 deletions

View File

@@ -3,10 +3,6 @@ set $mod Mod4
# Set font
font pango:monospace 8
# Configure betterlockscreen
exec --no-startup-id "betterlockscreen --fx dim -u $HOME/Pictures/wallpaper-*"
bindsym $mod+Shift+x exec "betterlockscreen -l dim -w"
# Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
@@ -142,8 +138,8 @@ bindsym l resize shrink width 10 px or 10 ppt
bindsym $mod+r mode "resize"
# Brightness keys setup
bindsym XF86MonBrightnessDown exec --no-startup-id "doas $HOME/.scripts/brightness.sh -5"
bindsym XF86MonBrightnessUp exec --no-startup-id "doas $HOME/.scripts/brightness.sh 5"
bindsym XF86MonBrightnessDown exec --no-startup-id "sudo $HOME/.scripts/brightness.sh -5"
bindsym XF86MonBrightnessUp exec --no-startup-id "sudo $HOME/.scripts/brightness.sh 5"
# Window Cosmetic Changes
gaps inner 5
@@ -153,8 +149,8 @@ client.focused_inactive #333333 #222222 #888888 #292d2e #eeeeee
client.unfocused #333333 #222222 #888888 #292d2e #eeeeee
# Startup Applications
exec --no-startup-id "lxpolkit &" # start authentication agent (prompt)
exec_always --no-startup-id "$HOME/.screenlayout/launch.sh &" # setup screen layout and wallpapers
exec_always --no-startup-id "$HOME/.scripts/autostart_desktop.sh &" # run autostart desktop apps
exec --no-startup-id "polybar &" # status bar
exec --no-startup-id "picom &" # startup composition manager (transparency)
exec --no-startup-id "polybar" # status bar
exec --no-startup-id "$HOME/.scripts/autostart_desktop.sh &" # run autostart desktop apps
exec --no-startup-id "emacs --daemon &" # startup emacs daemon

View File

@@ -150,7 +150,7 @@ Pretty self explanatory.
#+begin_src emacs-lisp
(defun jm/set-font-faces ()
(set-face-attribute 'default nil :font "Fira Code Retina" :height 140))
(set-face-attribute 'default nil :font "Fira Code" :height 140))
#+end_src
Adding a fix for fonts when running Emacs as a daemon.

View File

@@ -72,6 +72,8 @@ From here, I can continue onto configuring the ~mu4e~ emacs package.
:load-path jm/mu4e-load-path
:bind ("C-x m" . mu4e)
:config
(setq mu4e-mu-binary (executable-find "mu"))
;; Avoids syncing issues.
(setq mu4e-change-filenames-when-moving t)