Changeset 4f2555f in dotfiles


Ignore:
Timestamp:
Mar 8, 2020, 1:13:16 AM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
4d7b63b
Parents:
9c9ce77
Message:

Add stumpwm binds to sway;

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • X/.Xdefaults

    r9c9ce77 r4f2555f  
    44*.foreground:   #cccccc
    55*.background:   #2d2d2d
    6 *.cursorColor:  #aeafad
     6*.cursorColor:  #f2777a
    77
    88! Black / Grey
     
    4141URxvt.font: xft:terminus:pixelsize=14
    4242URxvt.scrollBar: false
    43 URxvt.perl-ext-common: default,selection-to-clipboard,pasta,matcher,keyboard-select
    44 URxvt.keysym.M-u:     perl:url-select:select_next
    4543URxvt.underlineURLs:  True
    4644URxvt.cursorBlink: True
     
    5654Xft.antialias: 1
    5755Xft.rgba: rgb
     56
     57! Change cursor
     58Xcursor.theme: Adwaita
  • guix/.bash_profile

    r9c9ce77 r4f2555f  
    7171
    7272if [ "$(tty)" = "/dev/tty1" ]; then
     73    herd start &&
    7374        exec sway
    7475fi
  • guix/.config/sway/config

    r9c9ce77 r4f2555f  
    164164bindsym $mod+r mode "resize"
    165165
    166 #
    167 # Status Bar:
    168 #
    169 # Read `man 5 sway-bar` for more information about this section.
    170166bar {
    171167    position top
     
    174170    # The default just shows the current date and time.
    175171    status_command while date +'%Y-%m-%d %H:%M:%S %p'; do sleep 1; done
     172    #swaybar_command waybar
    176173    #status_command while echo 'hello'; do sleep1; done
    177    
     174    strip_workspace_name yes
    178175
    179176    colors {
     
    184181    }
    185182}
     183
    186184
    187185input type:keyboard {
     
    195193hide_edge_borders vertical
    196194
     195gaps inner 1
     196
    197197#include /gnu/store/08mg9iahnyh4fyrafla3zyb5an2jscb0-sway-1.2/etc/sway/config.d/*
  • guix/config.scm

    r9c9ce77 r4f2555f  
    22;; I use it on my libreboot'ed thinkpad X200T
    33;;
     4;; Wayland + Sway setup for development (Python, Haskell, Lisp, C)
     5;;
    46;; Feel free to use it
    57;; https://w96k.ru
     
    911
    1012(use-service-modules xorg
     13                     dbus
    1114                     admin
    1215                     networking
     
    2831(define %my-services
    2932  (cons*
    30    ;; (service slim-service-type)
     33   (service slim-service-type)
    3134   (service dhcp-client-service-type)
    3235
     
    3437            (libvirt-configuration
    3538             (unix-sock-group "libvirt")))
    36    x11-socket-directory-service
     39   ;;x11-socket-directory-service
     40   ;;(service dbus-root-service-type)
    3741
    3842   ;; Wacom tablet support
     
    7377  (map specification->package
    7478       '(;;"emacs-next"
    75          "emacs"
     79         "emacs-no-x-toolkit"
    7680         "emacs-with-editor"
    7781         "emacs-use-package"
     
    259263          "sway"
    260264          "dmenu"
    261           "waybar"
     265          ;;"waybar"
    262266          "gnunet"
    263267          "adwaita-icon-theme"
Note: See TracChangeset for help on using the changeset viewer.