2022-03-30 11:42:09 +02:00
|
|
|
(define-module (oni home data config)
|
|
|
|
#:use-module (gnu home)
|
|
|
|
#:use-module (gnu home services)
|
|
|
|
#:use-module (gnu home services shells)
|
|
|
|
#:use-module (gnu home services desktop)
|
2022-06-22 05:25:33 +02:00
|
|
|
#:use-module (gnu home services ssh)
|
2022-03-30 11:42:09 +02:00
|
|
|
#:use-module (gnu services)
|
2022-04-02 09:27:11 +02:00
|
|
|
#:use-module (gnu packages)
|
2022-03-30 11:42:09 +02:00
|
|
|
#:use-module (gnu packages admin)
|
2022-04-04 10:11:13 +02:00
|
|
|
#:use-module (gnu packages shellutils)
|
2022-04-14 10:39:25 +02:00
|
|
|
#:use-module (gnu packages wm)
|
2022-06-17 04:09:43 +02:00
|
|
|
#:use-module (gnu packages xdisorg)
|
2022-03-30 11:42:09 +02:00
|
|
|
#:use-module (guix gexp)
|
2022-07-03 00:36:10 +02:00
|
|
|
#:use-module (oni home services rofi)
|
2022-04-03 10:32:27 +02:00
|
|
|
#:use-module (oni home services xmodmap)
|
2022-04-05 10:30:08 +02:00
|
|
|
#:use-module (oni home services kitty)
|
2022-04-06 06:47:45 +02:00
|
|
|
#:use-module (oni home services xsession)
|
2022-04-07 08:44:55 +02:00
|
|
|
#:use-module (oni home services compton)
|
2022-04-12 08:15:51 +02:00
|
|
|
#:use-module (oni home services xbindkeys)
|
2022-04-14 10:39:25 +02:00
|
|
|
#:use-module (oni home services zsh)
|
2022-04-16 09:24:34 +02:00
|
|
|
#:use-module (oni home services herbstluftwm)
|
2022-04-19 10:14:14 +02:00
|
|
|
#:use-module (oni home services polybar)
|
|
|
|
#:use-module (oni home services kdeconnect)
|
2022-04-21 01:44:52 +02:00
|
|
|
#:use-module (oni home services cmst)
|
2022-04-27 10:16:39 +02:00
|
|
|
#:use-module (oni home services syncthing)
|
2022-06-17 04:09:43 +02:00
|
|
|
#:use-module (oni home services unclutter)
|
2022-05-21 20:08:01 +02:00
|
|
|
#:use-module (oni packages hlwm-run-or-raise)
|
|
|
|
#:use-module (oni packages pick-random-wallpaper))
|
2022-03-30 11:42:09 +02:00
|
|
|
|
|
|
|
(home-environment
|
2022-04-19 08:36:56 +02:00
|
|
|
(packages (list (specification->package+output "glibc-locales")
|
|
|
|
(specification->package+output "font-fantasque-sans")
|
2022-04-27 10:16:39 +02:00
|
|
|
(specification->package+output "font-comic-neue")
|
2022-05-21 20:08:01 +02:00
|
|
|
hlwm-run-or-raise
|
|
|
|
pick-random-wallpaper))
|
2022-04-02 09:27:11 +02:00
|
|
|
|
2022-03-30 11:42:09 +02:00
|
|
|
(services
|
|
|
|
(list
|
|
|
|
(simple-service 'some-useful-env-vars-service
|
|
|
|
home-environment-variables-service-type
|
|
|
|
`(("LESS" . "FXRSi")
|
|
|
|
("MY_GUIX_CONFIGURED" . "1")
|
|
|
|
("DOTNET_CLI_TELEMETRY_OPTOUT" . "1")
|
|
|
|
("EDITOR" . "emacsclient")
|
2022-04-02 09:27:11 +02:00
|
|
|
("CALIBRE_USE_DARK_PALETTE" . "1")
|
2022-04-21 07:48:29 +02:00
|
|
|
("GUIX_LOCPATH" . "$HOME/.guix-home/profile/lib/locale")
|
|
|
|
("XDG_DATA_DIRS" . "${XDG_DATA_DIRS}${XDG_DATA_DIRS:+:}/usr/local/share:/usr/share")))
|
2022-03-30 11:42:09 +02:00
|
|
|
|
|
|
|
(service home-redshift-service-type
|
|
|
|
(home-redshift-configuration
|
|
|
|
(location-provider 'manual)
|
|
|
|
(latitude 49.2127205)
|
|
|
|
(longitude 122.9267927)))
|
|
|
|
|
2022-04-04 10:11:13 +02:00
|
|
|
(service home-zsh-service-type
|
|
|
|
(home-zsh-configuration
|
|
|
|
(environment-variables
|
|
|
|
'(("HISTFILE" . "$HOME/.zsh/histfile")
|
|
|
|
("HISTSIZE" . "1000")
|
2022-06-17 04:10:14 +02:00
|
|
|
("SAVEHIST" . "1000")))
|
2022-04-04 10:11:13 +02:00
|
|
|
(zshrc
|
|
|
|
(list
|
|
|
|
(mixed-text-file
|
|
|
|
"zshrc"
|
|
|
|
"fpath=($HOME/.zsh/functions $fpath)\n"
|
|
|
|
"autoload -U $HOME/.zsh/functions/*(:t)\n"
|
|
|
|
"alias csi=\"rlwrap csi\"\n"
|
|
|
|
"alias scsh=\"rlwrap scsh\"\n"
|
|
|
|
"alias sbcl=\"rlwrap sbcl\"\n"
|
|
|
|
"alias hc=herbstclient\n"
|
|
|
|
"setopt SHARE_HISTORY\n"
|
|
|
|
"setopt HIST_IGNORE_ALL_DUPS\n"
|
2022-06-17 04:10:14 +02:00
|
|
|
"setopt PROMPT_SUBST\n"
|
2022-04-04 10:11:13 +02:00
|
|
|
"zle -N x-copy-region-as-kill\n"
|
|
|
|
"zle -N x-kill-region\n"
|
|
|
|
"zle -N x-yank\n"
|
|
|
|
"bindkey -e '^[w' x-copy-region-as-kill\n"
|
|
|
|
"bindkey -e '^W' x-kill-region\n"
|
|
|
|
"bindkey -e '^Y' x-yank\n"
|
|
|
|
"autoload -Uz compinit\n"
|
2022-06-17 04:10:14 +02:00
|
|
|
"compinit\n"
|
|
|
|
"PROMPT=\"%T \\$(spwd) %B%(?.%F{2}.%F{1}[%?])>%b%f \"")))))
|
2022-04-12 08:15:51 +02:00
|
|
|
|
|
|
|
;; This has to be the first extension because it needs to be added to the
|
|
|
|
;; configuration last.
|
|
|
|
(service home-zsh-syntax-highlighting-service-type)
|
|
|
|
(service home-zsh-autosuggestions-service-type)
|
2022-03-30 21:26:45 +02:00
|
|
|
|
|
|
|
(service home-rofi-service-type
|
|
|
|
(home-rofi-configuration
|
|
|
|
(config
|
2022-04-02 10:34:55 +02:00
|
|
|
'((kb-cancel . "Escape,Control+g")
|
|
|
|
(window-format . "{c} {t}")))
|
2022-03-30 21:26:45 +02:00
|
|
|
(theme
|
2022-04-02 10:34:55 +02:00
|
|
|
'((* ((text-color . "#bfbfbf")
|
|
|
|
(background-color . "#3f4242")
|
|
|
|
(lightbg . "#5b6161")
|
|
|
|
(red . "#a85454")
|
|
|
|
(orange . "#faa41a")
|
|
|
|
(blue . "#1f2c3f")
|
|
|
|
|
2022-07-04 04:00:35 +02:00
|
|
|
(selected-normal-foreground . "@text-color")
|
|
|
|
(normal-foreground . "@text-color")
|
|
|
|
(alternate-normal-background . "@background-color")
|
|
|
|
(selected-urgent-foreground . "@text-color")
|
|
|
|
(urgent-foreground . "@text-color")
|
|
|
|
(alternate-urgent-background . "@background-color")
|
2022-04-02 10:34:55 +02:00
|
|
|
(active-foreground . "@text-color")
|
2022-07-04 04:00:35 +02:00
|
|
|
(selected-active-foreground . "@text-color")
|
|
|
|
(alternate-normal-foreground . "@text-color")
|
2022-04-02 10:34:55 +02:00
|
|
|
(alternate-active-background . "@blue")
|
2022-07-04 04:00:35 +02:00
|
|
|
(bordercolor . "@text-color")
|
|
|
|
(normal-background . "@background-color")
|
2022-04-02 10:34:55 +02:00
|
|
|
(selected-normal-background . "@blue")
|
|
|
|
(separatorcolor . "@orange")
|
|
|
|
(spacing . 2)
|
|
|
|
(urgent-background . "@red")
|
2022-07-04 04:00:35 +02:00
|
|
|
(alternate-urgent-foreground . "@text-color")
|
2022-04-02 10:34:55 +02:00
|
|
|
(selected-urgent-background . "@red")
|
2022-07-04 04:00:35 +02:00
|
|
|
(alternate-active-foreground . "@text-color")
|
2022-04-02 10:34:55 +02:00
|
|
|
(selected-active-background . "@blue")
|
|
|
|
(active-background . "@red")
|
|
|
|
|
|
|
|
(font . "Fantasque Sans Mono 14")))
|
|
|
|
(window ((border . 0)
|
2022-07-04 04:00:35 +02:00
|
|
|
(text-color . "@text-color")
|
2022-04-02 10:34:55 +02:00
|
|
|
(background-color . "rgba(0, 0, 0, 0%)")
|
|
|
|
(padding . 5)
|
|
|
|
(text-color . "@bordercolor")
|
2022-07-04 04:00:35 +02:00
|
|
|
(background-color . "@background-color")))
|
2022-04-02 10:34:55 +02:00
|
|
|
(mainbox ((border . 0)
|
|
|
|
(padding . 0)))
|
|
|
|
(message ((border . "1px dash 0px 0px")
|
|
|
|
(text-color . "@separatorcolor")
|
|
|
|
(padding . "2px 0px 0px")))
|
2022-07-04 04:00:35 +02:00
|
|
|
(textbox ((text-color . "@text-color")))
|
2022-04-02 10:34:55 +02:00
|
|
|
(listview ((fixed-height . 0)
|
|
|
|
(border . "2px 0px 0px")
|
|
|
|
(padding . "2px 0px 0px")
|
|
|
|
(text-color . "@separatorcolor")))
|
|
|
|
(element ((border . 0)
|
|
|
|
(children "element-icon" "element-text")
|
|
|
|
(spacing . "5px")))
|
|
|
|
(element.normal.normal ((text-color . "@normal-foreground")
|
|
|
|
(background-color . "@normal-background")))
|
|
|
|
(element.normal.urgent ((text-color . "@urgent-foreground")
|
|
|
|
(background-color . "@urgent-background")))
|
|
|
|
(element.normal.active ((text-color . "@active-foreground")
|
|
|
|
(background-color . "@active-background")))
|
|
|
|
(element.selected.urgent ((text-color . "@selected-urgent-foreground")
|
|
|
|
(background-color . "@selected-urgent-background")))
|
|
|
|
(element.selected.active ((text-color . "@selected-active-foreground")
|
|
|
|
(background-color . "@selected-active-foreground")))
|
|
|
|
(element.alternate.normal ((text-color . "@alternate-normal-foreground")
|
|
|
|
(background-color . "@alternate-normal-background")))
|
|
|
|
(element.alternate.urgent ((text-color . "@alternate-urgent-foreground")
|
|
|
|
(background-color . "@alternate-urgent-background")))
|
|
|
|
(element.alternate.active ((text-color . "@alternate-active-foreground")
|
|
|
|
(background-color . "@alternate-active-background")))
|
|
|
|
(mode-switcher ((border . "1px dash 0px 0px")))
|
|
|
|
(#{button selected}# ((text-color . "@selected-normal-foreground")
|
|
|
|
(background-color . "@selected-normal-background")))
|
|
|
|
(inputbar ((spacing . 0)
|
|
|
|
(border . "0px")
|
|
|
|
(children "prompt" "textbox-prompt-colon" "entry" "case-indicator")))
|
2022-07-04 04:00:35 +02:00
|
|
|
(#{button normal}# ((text-color . "@text-color")))
|
2022-04-02 10:34:55 +02:00
|
|
|
(text-prompt-color ((expand . #f)
|
|
|
|
(str . ":")
|
|
|
|
(margin . "0px 0.3em 0em 0em")
|
|
|
|
(text-color . "@normal-foreground")))))))
|
2022-04-02 09:29:25 +02:00
|
|
|
|
|
|
|
(service home-xmodmap-service-type
|
|
|
|
(home-xmodmap-configuration
|
|
|
|
(pointer '(3 2 1))
|
|
|
|
(extra '("remove Mod5 = ISO_Level3_Shift"
|
|
|
|
"keycode 108 = Alt_L"
|
2022-04-03 10:32:27 +02:00
|
|
|
"add Mod1 = Alt_L"))))
|
|
|
|
|
|
|
|
(service home-kitty-service-type
|
|
|
|
(home-kitty-configuration
|
|
|
|
(configuration
|
|
|
|
'((font-family . "Fantasque Sans Mono")
|
|
|
|
(bold-font . "Fantasque Sans Mono Bold")
|
|
|
|
(italic-font . "Fantasque Sans Mono Italic")
|
|
|
|
(bold-italic-font . "Fantasque Sans Mono Bold Italic")
|
|
|
|
(font-size . 14)
|
|
|
|
(symbol-map . "U+f002 Font Awesome 5 Free Solid")
|
|
|
|
(cursor-shape . beam)
|
|
|
|
(cursor-blink-interval . 0)
|
|
|
|
(url-style . single)
|
|
|
|
(open-url-with . firefox)
|
|
|
|
(copy-on-select . #f)
|
|
|
|
(enable-audio-bell . #f)
|
|
|
|
(visual-bell-duration . 0)
|
|
|
|
(window-padding-width . 11.25)
|
|
|
|
(active-tab-font-style . normal)
|
|
|
|
(editor . emacsclient)
|
|
|
|
(allow-remote-control . #t)
|
|
|
|
(enabled-layouts vertical stack tall fat grid horizontal)
|
|
|
|
(cursor . "#969696")
|
|
|
|
(url-color . "#a88654")
|
|
|
|
(active-border-color . "#1f2c3f")
|
|
|
|
(inactive-border-color . "#3d3d3d")
|
|
|
|
(bell-border-color . "#3f1a1a")
|
|
|
|
(active-tab-foreground . "#65a854")
|
|
|
|
(active-tab-background . "#1f2c3f")
|
|
|
|
(inactive-tab-foreground . "#65a854")
|
|
|
|
(inactive-tab-background . "#3d3d3d")
|
|
|
|
(foreground . "#bfbfbf")
|
|
|
|
(background . "#222424")
|
2022-06-14 07:13:01 +02:00
|
|
|
(selection-foreground . "#222424")
|
|
|
|
(selection-background . "#7126a3f0f01f")
|
2022-04-03 10:32:27 +02:00
|
|
|
(color0 . "#222222")
|
|
|
|
(color8 . "#3d3d3d")
|
2022-06-14 07:13:01 +02:00
|
|
|
(color1 . "#ca3c828e828e")
|
|
|
|
(color9 . "#f01f71267126")
|
|
|
|
(color2 . "#90e4ca3c828e")
|
|
|
|
(color10 . "#8a8bf01f7126")
|
|
|
|
(color3 . "#bbe6ca3c828e")
|
|
|
|
(color11 . "#d6baf01f7126")
|
|
|
|
(color4 . "#828e9f3aca3c")
|
|
|
|
(color12 . "#7126a3f0f01f")
|
|
|
|
(color5 . "#bbe6828eca3c")
|
|
|
|
(color13 . "#d6ba7126f01f")
|
|
|
|
(color6 . "#828eca3cca3c")
|
|
|
|
(color14 . "#7126f01ff01f")
|
2022-04-03 10:32:27 +02:00
|
|
|
(color7 . "#969696")
|
2022-04-05 10:30:08 +02:00
|
|
|
(color15 . "#ededed")))))
|
|
|
|
|
|
|
|
(service home-xsession-service-type
|
|
|
|
(home-xsession-configuration
|
|
|
|
(configuration
|
|
|
|
(list
|
2022-04-14 10:39:25 +02:00
|
|
|
(mixed-text-file
|
|
|
|
"xsession"
|
|
|
|
"xrdb -cpp m4 -merge \"${HOME}/.config/X11/Xresources\" -I\"${HOME}/.config/X11/Xresources.d\"\n"
|
|
|
|
"xrandr --setprovideroutputsource modesetting NVIDIA-0\n"
|
|
|
|
"xrandr --auto\n"
|
|
|
|
"xrandr --dpi 96\n")))))
|
2022-04-06 06:47:45 +02:00
|
|
|
|
|
|
|
(service home-picom-service-type
|
|
|
|
(home-picom-configuration
|
|
|
|
(config
|
|
|
|
'((detect-transient . #t)
|
|
|
|
(shadow . #t)
|
|
|
|
(wintypes ((dnd ((shadow . #f)))
|
|
|
|
(dock ((shadow . #f)))))
|
|
|
|
(shadow-radius . 10)
|
|
|
|
(shadow-exclude ("name = 'mowedline'"
|
|
|
|
"class_g = 'trayer'"
|
2022-04-07 08:44:55 +02:00
|
|
|
"bounding_shaped"))))))
|
|
|
|
|
2022-04-20 10:23:26 +02:00
|
|
|
(service home-xbindkeys-service-type
|
|
|
|
(home-xbindkeys-configuration
|
|
|
|
(keybindings
|
|
|
|
'(((mod4 shift q) . "herbstclient quit")
|
|
|
|
((mod4 shift e) . "herbstclient reload")
|
|
|
|
((mod4 k) . "hersbtclient close")
|
|
|
|
((mod4 mod1 k) . "herbstclient remove")
|
|
|
|
((mod4 Return) . "herbstclient spawn kitty")
|
|
|
|
((mod4 t) . "herbstclient spawn hlwm-run-or-raise \"\\(URxct\\|Hyper\\|kitty\\)\" kitty")
|
|
|
|
((mod4 b) . "herbstclient spawn hlwm-run-or-raise \"\\(Conkeror\\|[Ff]irefox\\|Chromium\\|Next\\|qutebrowser\\)\" firefox")
|
|
|
|
((mod4 e) . "herbstclient spawn hlwm-run-or-raise Emacs emacsclient --create-frame")
|
2022-06-03 08:31:04 +02:00
|
|
|
((control mod1 l) . "herbstclient spawn i3lock --color=000000")
|
2022-04-20 10:23:26 +02:00
|
|
|
((mod4 x) . "herbstclient spawn hlwm-switch-tags")
|
|
|
|
((mod4 shift b) . "herbstclient shift left")
|
|
|
|
((mod4 shift n) . "herbstclient shift down")
|
|
|
|
((mod4 shift p) . "herbstclient shift up")
|
|
|
|
((mod4 shift f) . "herbstclient shift right")
|
|
|
|
((mod4 control b) . "herbstclient resize left +0.05")
|
|
|
|
((mod4 control n) . "herbstclient resize down +0.05")
|
|
|
|
((mod4 control p) . "herbstclient resize up +0.05")
|
|
|
|
((mod4 control f) . "herbstclient resize right +0.05")
|
|
|
|
((mod4 shift underscore) . "herbstclient split bottom 0.5")
|
|
|
|
((mod4 shift bar) . "herbstclient split right 0.5")
|
|
|
|
((mod4 period) . "herbstclient use_index +1 --skip-visible")
|
|
|
|
((mod4 comma) . "herbstclient use_index -1 --skip-visible")
|
|
|
|
((mod4 shift control f) . "herbstclient floating toggle")
|
|
|
|
((mod4 f) . "herbstclient cycle_layout 1 vertical max")
|
|
|
|
((mod4 m) . "herbstclient fullscreen toggle")
|
|
|
|
((mod4 p) . "herbstclient pseudotile toggle")
|
|
|
|
((mod4 space) . "herbstclient or , and . compare tags.focus.curframe_wcount = 2 . cycle_layout +1 vertical horizontal max vertical grid , cycle_layout +1")
|
|
|
|
((mod4 BackSpace) . "herbstclient cycle_monitor")
|
|
|
|
((mod4 u) . "herbstclient jumpto urgent")
|
|
|
|
((XF86AudioPlay) . "herbstclient spawn mpc toggle")
|
|
|
|
((XF86AudioNext) . "herbstclient spawn mpc next")
|
|
|
|
((XF86AudioPrev) . "herbstclient spawn mpc prev")
|
|
|
|
((mod4 c)
|
|
|
|
("1" . "herbstclient move_index 0")
|
|
|
|
("2" . "herbstclient move_index 1")
|
|
|
|
("3" . "herbstclient move_index 2")
|
|
|
|
("4" . "herbstclient move_index 3")
|
|
|
|
("5" . "herbstclient move_index 4")
|
|
|
|
("6" . "herbstclient move_index 5")
|
|
|
|
("7" . "herbstclient move_index 6")
|
|
|
|
("8" . "herbstclient move_index 7")
|
|
|
|
("9" . "herbstclient move_index 8")
|
|
|
|
("0" . "herbstclient move_index 9"))
|
|
|
|
((mod4 s)
|
|
|
|
("f" . "flameshot full ~/pictures/screenshots/")
|
|
|
|
("c" . "flameshot gui"))))))
|
2022-04-14 10:39:25 +02:00
|
|
|
|
2022-04-15 09:48:15 +02:00
|
|
|
(service home-herbstluftwm-service-type
|
|
|
|
(home-herbstluftwm-configuration
|
|
|
|
(tags '(dev web game))
|
|
|
|
(mouse-bindings
|
|
|
|
'(("Mod4-Button1" . "move")
|
|
|
|
("Mod4-Button2" . "zoom")
|
|
|
|
("Mod4-Button3" . "resize")))
|
|
|
|
(settings
|
|
|
|
'((default_frame_layout . 2)
|
|
|
|
(frame_border_active_color . "#3d3d3d")
|
|
|
|
(frame_border_normal_color . "#222222")
|
|
|
|
(frame_bg_normal_color . "#111111")
|
|
|
|
(frame_bg_active_color . "#263f1f")
|
|
|
|
(frame_border_width . 0)
|
|
|
|
(window_border_width . 2)
|
|
|
|
(window_border_inner_width . 0)
|
|
|
|
(window_border_normal_color . "#222222")
|
|
|
|
(window_border_active_color . "#1f3f3f")
|
|
|
|
(window_border_inner_color . "#111111")
|
|
|
|
(always_show_frame . 0)
|
|
|
|
(frame_gap . 30)
|
|
|
|
(window_gap . 30)
|
|
|
|
(frame_padding . -30)
|
|
|
|
(frame_bg_transparent . 1)
|
|
|
|
(smart_window_surroundings . 0)
|
|
|
|
(smart_frame_surroundings . 0)
|
|
|
|
(mouse_recenter_gap . 0)
|
|
|
|
(swap_monitors_to_get_tag . 0)
|
|
|
|
(update_dragged_clients . 1)
|
|
|
|
(tree_style . "╾│ ├└╼─┐")))
|
|
|
|
(attributes
|
|
|
|
'(((theme tiling reset) . 1)
|
|
|
|
((theme floating reset) . 1)))
|
|
|
|
(rules
|
|
|
|
'(("focus=on")
|
|
|
|
("class=Emacs" "tag=dev" "index=01" "switchtag=on" "hook=emacs")
|
2022-04-16 08:44:00 +02:00
|
|
|
("class~'URxvt|kitty'" "tag=dev" "index=1" "switchtag=on" "hook=urxvt")
|
2022-06-17 05:54:26 +02:00
|
|
|
("class~'Conkeror|[Ff]irefox|Chromium'" "tag=web" "index=0" "switchtag=on")
|
2022-04-15 09:48:15 +02:00
|
|
|
("class=Pinentry" "pseudotile=on")
|
|
|
|
("class=Alsaplayer" "pseudotile=on")
|
|
|
|
("class=Gcr-prompter" "pseudotile=on")
|
|
|
|
("class=Steam" "title='Steam Login'" "pseudotile=on")
|
|
|
|
("class=Steam" "title~'Steam - News .*'" "pseudotile=on")
|
|
|
|
("class=" "title=Steam" "pseudotile=on")
|
|
|
|
("class=xfreerdp" "floating=on" "tag=work" "index=0" "switchtag=on")
|
|
|
|
("windowtype~'_NET_WM_WINDOW_TYPE_(DIALOG|UTILITY|SPLASH)'" "pseudotile=on")
|
|
|
|
("windowtype='_NET_WM_WINDOW_TYPE_DIALOG'" "focus=on")
|
|
|
|
("windowtype~'_NET_WM_WINDOW_TYPE_(NOTIFICATION|DOCK|DESKTOP)'" "manage=off")
|
|
|
|
("class=pinball.exe" "pseudotile=on")))
|
|
|
|
(padding '(0 0 0 16 16))
|
|
|
|
(layouts
|
|
|
|
'((web clients max:0)
|
2022-04-19 08:37:16 +02:00
|
|
|
(dev split horizontal:0.54:1 (clients max:0) (clients vertical:0))))
|
2022-04-15 09:48:15 +02:00
|
|
|
(extra
|
|
|
|
(list
|
|
|
|
"set_monitors 1920x1080+0+0"
|
|
|
|
"focus_edge left"
|
|
|
|
"keybind Mod4-apostrophe spawn dunstctl close"
|
|
|
|
"keybind Mod4-quotedbl spawn dunstctl close-all"
|
|
|
|
"keybind Mod4-Control-apostrophe spawn dunstctl history-pop"
|
2022-05-21 20:08:01 +02:00
|
|
|
"keybind Mod4-Mod1-apostrophe spawn dunstctl context"
|
2022-06-03 08:31:27 +02:00
|
|
|
"spawn pick-random-wallpaper"))))
|
2022-04-16 09:24:34 +02:00
|
|
|
|
|
|
|
(service home-polybar-service-type
|
|
|
|
(home-polybar-configuration
|
2022-04-19 10:14:14 +02:00
|
|
|
(bar "data")))
|
|
|
|
|
|
|
|
(service home-kdeconnect-service-type)
|
|
|
|
|
2022-04-21 01:44:52 +02:00
|
|
|
(service home-cmst-service-type)
|
|
|
|
|
2022-06-17 04:09:43 +02:00
|
|
|
(service home-syncthing-service-type)
|
|
|
|
|
|
|
|
(service home-unclutter-service-type
|
|
|
|
(home-unclutter-configuration
|
|
|
|
(package unclutter-xfixes)
|
2022-06-22 05:25:33 +02:00
|
|
|
(exclude-root #t)))
|
|
|
|
|
|
|
|
(service home-openssh-service-type
|
|
|
|
(home-openssh-configuration
|
|
|
|
(hosts (list (openssh-host
|
|
|
|
(name "ryuslash")
|
|
|
|
(host-name "ryuslash.org")
|
|
|
|
(user "slash")
|
|
|
|
(port 4511)
|
|
|
|
(extra-content "LocalForward 8090 localhost:8090
|
|
|
|
LocalForward 2812 localhost:2812"))
|
|
|
|
(openssh-host
|
|
|
|
(name "rincewind")
|
2022-07-06 04:29:24 +02:00
|
|
|
(host-name "192.168.1.135")
|
2022-06-22 05:25:33 +02:00
|
|
|
(port 4511)))))))))
|