diff --git a/linux/arch/config/lxpanel/LXDE/panels/panel b/linux/arch/config/lxpanel/LXDE/panels/panel index c9225be..f8303b6 100644 --- a/linux/arch/config/lxpanel/LXDE/panels/panel +++ b/linux/arch/config/lxpanel/LXDE/panels/panel @@ -88,6 +88,9 @@ Plugin { Button { id=/usr/share/applications/spotify.desktop } + Button { + id=/usr/share/applications/discord-canary.desktop + } Button { id=menu://applications/chrome-apps/chrome-hmjkmjkepdijhoojdojkdfohbdgmmhki-Default.desktop } diff --git a/linux/arch/config/terminator/config b/linux/arch/config/terminator/config index 41a1e1f..194f3cc 100644 --- a/linux/arch/config/terminator/config +++ b/linux/arch/config/terminator/config @@ -105,7 +105,7 @@ type = Terminal uuid = 41f364c3-36b4-4af5-b999-2b2141b85319 [[[terminal8]]] - command = lein dev-css; zsh + command = htop; zsh directory = /home/michael/.work-files/dive-networks/dive-web-app/ order = 0 parent = child7 @@ -113,7 +113,7 @@ type = Terminal uuid = 5e14119d-8778-4226-a424-b9c5eca80292 [[[terminal9]]] - command = watch free -h; zsh + command = lein dev-css; zsh directory = /home/michael/.work-files/dive-networks/dive-web-app/ order = 1 parent = child7 diff --git a/linux/arch/systemd/readme.md b/linux/arch/systemd/readme.md new file mode 100644 index 0000000..28c2390 --- /dev/null +++ b/linux/arch/systemd/readme.md @@ -0,0 +1,5 @@ +To install these services first link them to `/etc/systemd/system/` + +Next, run `systemctl enable .serivoce` + +And then finally you can force start with `systemctl start .service` diff --git a/linux/arch/systemd/remapKeyboard.service b/linux/arch/systemd/remapKeyboard.service new file mode 100644 index 0000000..a408010 --- /dev/null +++ b/linux/arch/systemd/remapKeyboard.service @@ -0,0 +1,8 @@ +[Unit] +Description=Remaps the keyboard using xmodmap + +[Service] +ExecStart=/home/michael/bin/remap-keyboard.sh + +[Install] +WantedBy=multi-user.target diff --git a/bin/figt b/linux/bin/figt similarity index 100% rename from bin/figt rename to linux/bin/figt diff --git a/bin/arch/packer b/linux/bin/packer similarity index 100% rename from bin/arch/packer rename to linux/bin/packer diff --git a/linux/bin/remap-keyboard.sh b/linux/bin/remap-keyboard.sh new file mode 100755 index 0000000..8b56041 --- /dev/null +++ b/linux/bin/remap-keyboard.sh @@ -0,0 +1,2 @@ +#!/bin/sh +xmodmap $HOME/.Xmodmap diff --git a/bin/selecta b/linux/bin/selecta similarity index 100% rename from bin/selecta rename to linux/bin/selecta diff --git a/notes/setup.md b/notes/setup.md index 6538a18..6fdb38d 100644 --- a/notes/setup.md +++ b/notes/setup.md @@ -7,7 +7,12 @@ # Setup Arch -* Lots to do but unfortunately I didn't write it all down! +* Full disk encryption with Veracrypt + +* Store /tmp in RAM + +* Move browser cache directories to /tmp as a means of reducing file writes on SSD + * Fix fonts by placing the following XML into `/etc/fonts/conf.avail/29-prettify.conf` and then symlinking: `ln -s /etc/fonts/conf.avail/29-prettify.conf /etc/fonts/conf.d/29-prettify.conf` @@ -90,5 +95,3 @@ Vim might not work properly when writing commit messages. To fix, run: $ git config --global core.editor /usr/bin/vim - -