aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Make zsh plugins their own servicesGravatar Tom Willemse2022-04-112-8/+71
|
* Add xbindkeys configurationGravatar Tom Willemse2022-04-062-2/+51
|
* Automatically start xmodmap when I first log inGravatar Tom Willemse2022-04-061-8/+18
|
* Add configuration for picomGravatar Tom Willemse2022-04-052-2/+152
|
* Add xsession configurationGravatar Tom Willemse2022-04-052-2/+43
|
* Install xmodmap when the xmodmap service is usedGravatar Tom Willemse2022-04-051-1/+7
|
* Install kitty when the kitty service is usedGravatar Tom Willemse2022-04-051-1/+7
|
* Configure zshGravatar Tom Willemse2022-04-041-2/+33
|
* Add a kitty home service with configurationGravatar Tom Willemse2022-04-032-2/+102
|
* Support symbols with special characters in configuration ↵Gravatar Tom Willemse2022-04-021-1/+5
| | | | group keys
* Update Rofi configurationGravatar Tom Willemse2022-04-021-9/+82
| | | | Make it prettier
* Add Xmodmap configGravatar Tom Willemse2022-04-022-2/+55
|
* Replace fish with zshGravatar Tom Willemse2022-04-021-4/+1
| | | | | There are some issues with loading things from fish, ZSH is easier to work with in Guix.
* Add glibc-locales so locales can be loaded from GuixGravatar Tom Willemse2022-04-021-1/+5
|
* Add rofi config for dataGravatar Tom Willemse2022-03-302-1/+171
|
* Add ‘guix-home’ configuration for dataGravatar Tom Willemse2022-03-302-0/+33
|
* Add Guix manifest fileGravatar Tom Willemse2022-03-032-0/+121
|
* [polybar] Several fixes for ‘inbox-size’Gravatar Tom Willemse2022-03-031-4/+6
| | | | | | | | | | | | | | - Make the header more robust. If we need to add more argumetns to the scsh command-line this will let us do that more easily in the future without having to change the header again. - Don't ‘display’ the result of the call to ‘run’ because that should always be ‘0’, unless something went wrong. Regardless, it doesn't belong in the output of this program. - Use ‘rx’ in Emacs to build the regular expression. This is easier to read, especially considering how many times a single ‘\’ has to be escaped (once for the string in scsh, and once more for the string in Emacs).
* Update scsh file headers for shell scriptsGravatar Tom Willemse2022-03-033-5/+12
| | | | | | | | | | | Other file headers come with caveats: - ‘#!/usr/bin/scsh -s’ :: Now that scsh is installed through Guix, this is not where this file lives. - ‘#!/usr/bin/env -S scsh -s’ :: This doesn't work when we need to specify move arguments on the command line and need to use the meta-argument. ‘env -S scsh \’ doesn't work.
* [emacs] Re-indent shepherd service fileGravatar Tom Willemse2022-03-031-10/+10
|
* [dunst] Add shepherd service definition for running dunstGravatar Tom Willemse2022-03-033-1/+18
|
* Add work, herbstluftwm, and mpd modulesGravatar Tom Willemse2022-03-031-1/+2
|
* [mpd] Lispify the MPD queryGravatar Tom Willemse2022-03-032-3/+26
| | | | | | | | | | | | | | Write a small DSL for converting a simple lisp expression to an MPD query format. This turns, for example: (and (= artist "Katatonia") (= album "Last Fair Deal Gone Down")) Into: ((artist == "Katatonia") AND (album == "Last Fair Deal Gone Down")) The expressions inside ‘query’ are quasi-quoted, so that variable substitution is possible.
* [mpd] Add option to randomize albums by specific artistGravatar Tom Willemse2022-03-021-6/+21
|
* Add script to connect to remote desktopGravatar Tom Willemse2022-03-013-0/+46
|
* [shepherd] Ignore generated init.scmGravatar Tom Willemse2022-03-011-0/+1
|
* [emacs] Include more variables for my Emacs serviceGravatar Tom Willemse2022-03-011-1/+1
| | | | | This service has been superseded by my shepherd service, but I'll keep it around in case I want to switch back.
* [x11] Remove shelldon startup file, shelldon isn't used ↵Gravatar Tom Willemse2022-03-011-1/+0
| | | | anymore
* [xdg] Don't specify the file to tangle to, the make file ↵Gravatar Tom Willemse2022-03-011-1/+0
| | | | does it
* [zsh] Fix syntax for setting environment variableGravatar Tom Willemse2022-03-011-1/+1
|
* [zsh] Add some supporting Guix variablesGravatar Tom Willemse2022-03-011-0/+19
|
* [herbstluftwm] Remove some tagsGravatar Tom Willemse2022-02-281-1/+1
|
* [herbstluftwm] Remove keybindingsGravatar Tom Willemse2022-02-281-112/+0
| | | | These are now handled by the xbindkeys tool.
* [herbstluftwm] Exclude any ‘.org’ files from ↵Gravatar Tom Willemse2022-02-281-1/+2
| | | | wallpaper selection
* [nyxt] Protect against trying to start swank multiple timesGravatar Tom Willemse2022-02-091-1/+5
|
* [nyxt] Add function that redirects some URLs to free ↵Gravatar Tom Willemse2022-02-091-6/+65
| | | | alternatives
* Add nyxt configurationGravatar Tom Willemse2022-01-312-1/+71
|
* Update GNUmakefileGravatar Tom Willemse2022-01-306-60/+124
| | | | | | | | | | | | | | | | | | | | | | | - Add the ‘dunst’, ‘zsh’, ‘mcron’, and ‘mbsync’ modules. - Tell Make that any ‘*.el’ files ar “precious”, meaning that when a ‘.elc’ file was generated from a ‘.el’ file that was itself generated from a ‘.org’ file, the ‘.el’ file isn't just an intermediate file and should not be deleted. - Change the ‘install’ and ‘clean’ to use the ‘*-stow’ and ‘*-clean’ rules set up for each module. - Add configuration for ‘outline-minor-mode’ and change the headings to adhere to that configuration. - Stop using the ‘build/’ directory, tangle all the files to the same directory as the source files, and use stow, not cp, to install them. The only exception is the XDG files, which now have their specific ‘xdg-stow’ rule. This is necessary because programs using these files will overwrite a symbolic link they find and replace it with a new file, overwriting my settings. - Add some files that were missing, and rename some files to follow the existing convention to make them easy to tangle.
* [polybar] Show how many items there are in my GTD inboxGravatar Tom Willemse2022-01-202-1/+13
|
* [dunst] Show notifications in the middle of the screen ↵Gravatar Tom Willemse2022-01-151-2/+3
| | | | at the top
* [dunst] Add notification customizations for SignalGravatar Tom Willemse2022-01-151-0/+15
|
* Add shepherd configuration with Emacs serviceGravatar Tom Willemse2022-01-144-24/+82
|
* [xmodmap] Add section to remap Super_R to Hyper_RGravatar Tom Willemse2022-01-133-3/+14
|
* [herbstluftwm] Remove monitor setupGravatar Tom Willemse2021-11-171-3/+0
| | | | I've switched from using 2 monitors to using 1 monitor
* [xdg] Add ‘mimeapps.list’ and move settings into ↵Gravatar Tom Willemse2021-11-177-10/+89
| | | | tangled org files
* [xbindkeys] Add configurationGravatar Tom Willemse2021-11-062-0/+110
|
* [polybar] Show the total number of unread emailsGravatar Tom Willemse2021-11-062-1/+22
|
* [fish] Remove the VPN indicatorGravatar Tom Willemse2021-11-061-5/+0
| | | | I’ve moved this to my polybar configuration instead.
* [herbstluftwm] Show Emacs in the middle frame and the ↵Gravatar Tom Willemse2021-11-061-2/+2
| | | | browser left
* [herbstluftwm] Pseudotile the mspinball main windowGravatar Tom Willemse2021-11-061-0/+1
|