Update css/js + few configs
This commit is contained in:
45
xconfig.org
45
xconfig.org
@@ -1,26 +1,11 @@
|
||||
#+TITLE: Configuration Files related to Xorg
|
||||
:DRAWER:
|
||||
#+STARTUP: overview
|
||||
#+SETUPFILE: ./setup/org-setup-file.org
|
||||
|
||||
#+LANGUAGE: en
|
||||
#+EMAIL: dehaeze.thomas@gmail.com
|
||||
#+AUTHOR: Dehaeze Thomas
|
||||
|
||||
#+HTML_LINK_HOME: ./index.html
|
||||
#+HTML_LINK_UP: ./index.html
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/jquery.stickytableheaders.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/readtheorg.js"></script>
|
||||
:END:
|
||||
|
||||
* Xresources
|
||||
* =~/.Xresources=
|
||||
:PROPERTIES:
|
||||
:header-args: :tangle ~/.Xresources
|
||||
:header-args+: :comments none :mkdirp yes
|
||||
:CUSTOM_ID: xresources
|
||||
:END:
|
||||
|
||||
** Colors
|
||||
@@ -95,10 +80,11 @@
|
||||
Xcursor.size: 0
|
||||
#+END_SRC
|
||||
|
||||
* Xmodmap
|
||||
* =~/.Xmodmap=
|
||||
:PROPERTIES:
|
||||
:header-args: :tangle ~/.Xmodmap
|
||||
:header-args+: :comments no :mkdirp yes
|
||||
:CUSTOM_ID: xmodmap
|
||||
:END:
|
||||
|
||||
#+begin_src conf
|
||||
@@ -352,11 +338,12 @@
|
||||
keycode 255 = XF86RFKill NoSymbol XF86RFKill
|
||||
#+end_src
|
||||
|
||||
* xinit
|
||||
* =~/.xinitrc=
|
||||
:PROPERTIES:
|
||||
:header-args: :tangle ~/.xinitrc
|
||||
:header-args+: :comments both :mkdirp yes
|
||||
:header-args+: :shebang "#!/bin/sh"
|
||||
:CUSTOM_ID: xinitrc
|
||||
:END:
|
||||
|
||||
#+begin_src bash
|
||||
@@ -399,7 +386,7 @@ Merge in defaults and keymaps
|
||||
|
||||
Start =gnome-keyring-daemon=.
|
||||
#+begin_src bash
|
||||
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
||||
eval $(gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
||||
export SSH_AUTH_SOCK
|
||||
#+end_src
|
||||
|
||||
@@ -411,14 +398,15 @@ Start =gnome-keyring-daemon=.
|
||||
exec i3
|
||||
#+end_src
|
||||
|
||||
* Xprofile
|
||||
* =~/.xprofile=
|
||||
:PROPERTIES:
|
||||
:header-args: :tangle ~/.xprofile
|
||||
:header-args+: :comments both :mkdirp yes
|
||||
:header-args+: :shebang "#!/bin/sh"
|
||||
:CUSTOM_ID: xprofile
|
||||
:END:
|
||||
|
||||
Keyboard Options
|
||||
Keyboard Options:
|
||||
#+begin_src bash
|
||||
# Set repetition keyboard rate
|
||||
xset r rate 200 40 &
|
||||
@@ -427,13 +415,13 @@ Keyboard Options
|
||||
setxkbmap -layout us -variant intl -option caps:escape &
|
||||
#+end_src
|
||||
|
||||
Start programs related to display.
|
||||
Start programs related to display:
|
||||
#+begin_src bash
|
||||
# Screen options
|
||||
xrandr --output eDP1 --mode 1920x1080 --dpi 192 &
|
||||
|
||||
# Set custom wallpaper script
|
||||
setbg &
|
||||
# Set random wallpaper
|
||||
setbg ~/.local/data/wallpapers/ &
|
||||
|
||||
# Hide mouse cursor after x seconds
|
||||
pgrep -xu "$USER" unclutter >/dev/null || \
|
||||
@@ -450,12 +438,13 @@ Start programs related to display.
|
||||
picom --daemon &
|
||||
#+end_src
|
||||
|
||||
Manually start =mopidy= as it seems to not start automatically:
|
||||
#+begin_src bash
|
||||
# Mopidy
|
||||
systemctl --user start mopidy
|
||||
mopidy --config ~/.config/mopidy/mopidy.conf >/dev/null 2>&1 &
|
||||
#+end_src
|
||||
|
||||
Finally, run SXHKD for the key bindings.
|
||||
Finally, run SXHKD for the key bindings:
|
||||
#+begin_src bash
|
||||
# Start sxhkd
|
||||
pgrep -xu "$USER" sxhkd >/dev/null || \
|
||||
|
||||
Reference in New Issue
Block a user