diff --git a/.Xresources b/.Xresources index cacc1a7..1d05d9b 100644 --- a/.Xresources +++ b/.Xresources @@ -1,3 +1,4 @@ +Xft.dpi: 96 !HiDPI displays ! Xft.dpi: 144 ! Xft.autohint: 0 diff --git a/.bash_profile b/.bash_profile index 5a0c486..f019d25 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,7 +4,15 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc -if [ -z "$DISPLAY" -a $XDG_VTNR -eq 1 ]; then +# if [ -z "$DISPLAY" -a $XDG_VTNR -eq 1 ]; then #date --iso-8601="seconds" - exec startx -- -keeptty >> ~/.xorg.log 2>&1 + # exec startx -- -keeptty >> ~/.xorg.log 2>&1 +# fi + +if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then + XKB_DEFAULT_LAYOUT=us exec sway fi + +# if [[ -z $DISPLAY && $(tty) == /dev/tty1 && $XDG_SESSION_TYPE == tty ]]; then + # XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session +# fi diff --git a/.bashrc b/.bashrc index 663d40c..ba06ad0 100644 --- a/.bashrc +++ b/.bashrc @@ -48,11 +48,19 @@ source /usr/share/fzf/key-bindings.bash source /usr/share/fzf/completion.bash #export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"' export FZF_DEFAULT_COMMAND='rg -i --files --glob "!.git/*"' -bind -x '"\C-p": nvim $(fzf);' -if [ -d "$HOME/bin/Fiji.app" ]; then - alias fiji="~/bin/Fiji.app/ImageJ-linux64" -fi +alias fzf='fzf --bind "enter:execute(nvim {})"' +bind -x '"\C-p": fzf;' +# bind -x '"\C-p": nvim $(fzf);' + +#setup history for fzf +# HISTFILESIZE=4096 +HISTCONTROL=ignoreboth:erasedups +# export HISTTIMEFORMAT='%Y-%m-%d %H:%M:%S | ' + +# if [ -d "$HOME/bin/Fiji.app" ]; then + # alias fiji="~/bin/Fiji.app/ImageJ-linux64" +# fi #source custom user aliases if [[ -e $HOME/.bashrc.local ]]; then diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 0000000..7380ddf --- /dev/null +++ b/.config/dunst/dunstrc @@ -0,0 +1,414 @@ +[global] + ### Display ### + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a window manager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern window managers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = mouse + + # The geometry of the window: + # [{width}]x{height}[+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else + # in pixels. If the width is omitted but the height is given + # ("-geometry x2"), the message window expands over the whole screen + # (dmenu-like). If width is 0, the window expands to the longest + # message displayed. A positive x is measured from the left, a + # negative from the right side of the screen. Y is measured from + # the top and down respectively. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "300x5-30+20" + + # Show how many messages are currently hidden (because of geometry). + indicate_hidden = yes + + # Shrink window if it's smaller than the width. Will be ignored if + # width is 0. + shrink = no + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing window manager is + # present (e.g. xcompmgr, compiz, etc.). + transparency = 0 + + # The height of the entire notification. If the height is smaller + # than the font height and padding combined, it will be raised + # to the font height and padding. + notification_height = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + separator_height = 2 + + # Padding between text and separator. + padding = 8 + + # Horizontal padding. + horizontal_padding = 8 + + # Defines width in pixels of frame around the notification window. + # Set to 0 to disable. + frame_width = 3 + + # Defines color of the frame around the notification window. + frame_color = "#aaaaaa" + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = frame + + # Sort messages by urgency. + sort = yes + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # A client can set the 'transient' hint to bypass this. See the rules + # section for how to disable this if necessary + idle_threshold = 120 + + ### Text ### + + font = Monospace 8 + + # The spacing between lines. If the height is smaller than the + # font height, it will get raised to the font height. + line_height = 0 + + # Possible values are: + # full: Allow a small subset of html markup in notifications: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # + # strip: This setting is provided for compatibility with some broken + # clients that send markup even though it's not enabled on the + # server. Dunst will try to strip the markup but the parsing is + # simplistic so using this option outside of matching rules for + # specific applications *IS GREATLY DISCOURAGED*. + # + # no: Disable markup parsing, incoming notifications will be treated as + # plain text. Dunst will not advertise that it has the body-markup + # capability if this is set as a global setting. + # + # It's important to note that markup inside the format option will be parsed + # regardless of what this is set to. + markup = full + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # %n progress value if set without any extra characters + # %% Literal % + # Markup is allowed + format = "%s\n%b" + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = left + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Split notifications into multiple lines if they don't fit into + # geometry. + word_wrap = yes + + # When word_wrap is set to no, specify where to make an ellipsis in long lines. + # Possible values are "start", "middle" and "end". + ellipsize = middle + + # Ignore newlines '\n' in notifications. + ignore_newline = no + + # Stack together notifications with the same content + stack_duplicates = true + + # Hide the count of stacked notifications with the same content + hide_duplicate_count = false + + # Display indicators for URLs (U) and actions (A). + show_indicators = yes + + ### Icons ### + + # Align icons left/right/off + icon_position = off + + # Scale larger icons down to this size, set to 0 to disable + max_icon_size = 32 + + # Paths to default icons. + icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + + ### History ### + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do. + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + ### Misc/Advanced ### + + # dmenu path. + dmenu = /usr/bin/dmenu -p dunst: + + # Browser for opening urls in context menu. + browser = /usr/bin/firefox -new-tab + + # Always run rule-defined scripts, even if the notification is suppressed + always_run_script = true + + # Define the title of the windows spawned by dunst + title = Dunst + + # Define the class of the windows spawned by dunst + class = Dunst + + # Print a notification on startup. + # This is mainly for error detection, since dbus (re-)starts dunst + # automatically after a crash. + startup_notification = false + + # Manage dunst's desire for talking + # Can be one of the following values: + # crit: Critical features. Dunst aborts + # warn: Only non-fatal warnings + # mesg: Important Messages + # info: all unimportant stuff + # debug: all less than unimportant stuff + verbosity = mesg + + # Define the corner radius of the notification window + # in pixel size. If the radius is 0, you have no rounded + # corners. + # The radius will be automatically lowered if it exceeds half of the + # notification height to avoid clipping text and/or icons. + corner_radius = 0 + + ### Legacy + + # Use the Xinerama extension instead of RandR for multi-monitor support. + # This setting is provided for compatibility with older nVidia drivers that + # do not support RandR and using it on systems that support RandR is highly + # discouraged. + # + # By enabling this setting dunst will not be able to detect when a monitor + # is connected or disconnected which might break follow mode if the screen + # layout changes. + force_xinerama = false + + ### mouse + + # Defines action of mouse event + # Possible values are: + # * none: Don't do anything. + # * do_action: If the notification has exactly one action, or one is marked as default, + # invoke it. If there are multiple and no default, open the context menu. + # * close_current: Close current notification. + # * close_all: Close all notifications. + mouse_left_click = close_current + mouse_middle_click = do_action + mouse_right_click = close_all + +# Experimental features that may or may not work correctly. Do not expect them +# to have a consistent behaviour across releases. +[experimental] + # Calculate the dpi to use on a per-monitor basis. + # If this setting is enabled the Xft.dpi value will be ignored and instead + # dunst will attempt to calculate an appropriate dpi value for each monitor + # using the resolution and physical size. This might be useful in setups + # where there are multiple screens with very different dpi values. + per_monitor_dpi = false + +[shortcuts] + + # Shortcuts are specified as [modifier+][modifier+]...key + # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", + # "mod3" and "mod4" (windows-key). + # Xev might be helpful to find names for keys. + + # Close notification. + close = ctrl+space + + # Close all notifications. + close_all = ctrl+shift+space + + # Redisplay last message(s). + # On the US keyboard layout "grave" is normally above TAB and left + # of "1". Make sure this key actually exists on your keyboard layout, + # e.g. check output of 'xmodmap -pke' + history = ctrl+grave + + # Context menu. + context = ctrl+shift+period + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + background = "#222222" + foreground = "#888888" + timeout = 10 + # Icon for notifications with low urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_normal] + background = "#285577" + foreground = "#ffffff" + timeout = 10 + # Icon for notifications with normal urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_critical] + background = "#900000" + foreground = "#ffffff" + frame_color = "#ff0000" + timeout = 0 + # Icon for notifications with critical urgency, uncomment to enable + #icon = /path/to/icon + +# Every section that isn't one of the above is interpreted as a rules to +# override settings for certain messages. +# +# Messages can be matched by +# appname (discouraged, see desktop_entry) +# body +# category +# desktop_entry +# icon +# match_transient +# msg_urgency +# stack_tag +# summary +# +# and you can override the +# background +# foreground +# format +# frame_color +# fullscreen +# new_icon +# set_stack_tag +# set_transient +# timeout +# urgency +# +# Shell-like globbing will get expanded. +# +# Instead of the appname filter, it's recommended to use the desktop_entry filter. +# GLib based applications export their desktop-entry name. In comparison to the appname, +# the desktop-entry won't get localized. +# +# SCRIPTING +# You can specify a script that gets run when the rule matches by +# setting the "script" option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: if you don't want a notification to be displayed, set the format +# to "". +# NOTE: It might be helpful to run dunst -print in a terminal in order +# to find fitting options for rules. + +# Disable the transient hint so that idle_threshold cannot be bypassed from the +# client +#[transient_disable] +# match_transient = yes +# set_transient = no +# +# Make the handling of transient notifications more strict by making them not +# be placed in history. +#[transient_history_ignore] +# match_transient = yes +# history_ignore = yes + +# fullscreen values +# show: show the notifications, regardless if there is a fullscreen window opened +# delay: displays the new notification, if there is no fullscreen window active +# If the notification is already drawn, it won't get undrawn. +# pushback: same as delay, but when switching into fullscreen, the notification will get +# withdrawn from screen again and will get delayed like a new notification +#[fullscreen_delay_everything] +# fullscreen = delay +#[fullscreen_show_critical] +# msg_urgency = critical +# fullscreen = show + +#[espeak] +# summary = "*" +# script = dunst_espeak.sh + +#[script-test] +# summary = "*script*" +# script = dunst_test.sh + +#[ignore] +# # This notification will not be displayed +# summary = "foobar" +# format = "" + +#[history-ignore] +# # This notification will not be saved in history +# summary = "foobar" +# history_ignore = yes + +#[skip-display] +# # This notification will not be displayed, but will be included in the history +# summary = "foobar" +# skip_display = yes + +#[signed_on] +# appname = Pidgin +# summary = "*signed on*" +# urgency = low +# +#[signed_off] +# appname = Pidgin +# summary = *signed off* +# urgency = low +# +#[says] +# appname = Pidgin +# summary = *says* +# urgency = critical +# +#[twitter] +# appname = Pidgin +# summary = *twitter.com* +# urgency = normal +# +#[stack-volumes] +# appname = "some_volume_notifiers" +# set_stack_tag = "volume" +# +# vim: ft=cfg diff --git a/.config/gtk-3.0/settings.ini b/.config/gtk-3.0/settings.ini index a5d49aa..076b6d6 100644 --- a/.config/gtk-3.0/settings.ini +++ b/.config/gtk-3.0/settings.ini @@ -1,7 +1,7 @@ [Settings] -gtk-theme-name=Arc-Dark-solid -gtk-icon-theme-name=Arc -gtk-font-name=Noto Sans 11 +gtk-icon-theme-name = Arc +gtk-theme-name = Arc-Dark-solid +gtk-font-name = Noto Sans 11 gtk-cursor-theme-name=Adwaita gtk-cursor-theme-size=0 gtk-toolbar-style=GTK_TOOLBAR_BOTH diff --git a/.config/i3/config b/.config/i3/config index 3f16c45..dee912a 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -34,7 +34,7 @@ font pango:monospace 8 # This font is widely installed, provides lots of unicode glyphs, right-to-left # text rendering and scalability on retina/hidpi displays (thanks to pango). -#font pango:DejaVu Sans Mono 8 +font pango:DejaVu Sans Mono 8 # Before i3 v4.8, we used to recommend this one as the default: # font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 diff --git a/.config/i3status/config b/.config/i3status/config index 934510f..a9eed12 100644 --- a/.config/i3status/config +++ b/.config/i3status/config @@ -74,6 +74,6 @@ run_watch DHCP { #update the following device path for temp1_input as needed cpu_temperature 0 { format = "%degrees °C" - path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input" + path = "/sys/devices/platform/coretemp.0/hwmon/hwmon5/temp1_input" } diff --git a/.config/sway/config b/.config/sway/config new file mode 100644 index 0000000..487f5d5 --- /dev/null +++ b/.config/sway/config @@ -0,0 +1,298 @@ +# This file has been auto-generated by i3-config-wizard(1). +# It will not be overwritten, so edit it as you like. +# +# Should you change your keyboard layout some time, delete +# this file and re-run i3-config-wizard(1). +# + +# i3 config file (v4) +# +# Please see https://i3wm.org/docs/userguide.html for a complete reference! + +set $mod Mod4 + +# Your preferred terminal emulator +set $term urxvt + +# Your preferred application launcher +# set $menu dmenu_run +# Note: it's recommended that you pass the final command to sway +set $menu dmenu_path | dmenu | xargs swaymsg exec -- + +bindsym --release $mod+z exec 'fn=$(date "+%Y-%m-%d-%H%M%S").png; grim -g "$(slurp)" $fn; ~/bin/mv2figs.sh $fn' +# bindsym --release $mod+z exec scrot '%Y-%m-%d_%H%M%S_$wx$h.png' -e '~/bin/mv2figs.sh $f' +bindsym $mod+Shift+z exec "date --iso-8601='seconds' | tr -d '\n' | xclip -selection clipboard" +#check out wl-clipboard for wayland xclip solution https://github.com/bugaevc/wl-clipboard + +#audio output kbd control- pulse audio +bindsym XF86AudioRaiseVolume exec pactl set-sink-volume 0 +5% +bindsym XF86AudioLowerVolume exec pactl set-sink-volume 0 -5% +bindsym XF86AudioMute exec pactl set-sink-mute 0 toggle +#audio output kbd control- alsa utils +#bindsym XF86AudioRaiseVolume exec amixer -q set Master 2dB+ unmute +#bindsym XF86AudioRaiseVolume exec amixer -q set Master 2dB+ unmute +#bindsym XF86AudioMute exec amixer -q set Master toggle +#display brightness +#bindsym XF86MonBrightnessDown exec brightnessctl set 5%- +#bindsym XF86MonBrightnessUp exec brightnessctl set +5% + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +font pango:monospace 8 + +# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) +# output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill + +#Apple trackpad input device id: +input "1452:657:bcm5974" { + tap enabled +} + +# You can get the names of your inputs by running: swaymsg -t get_inputs +# Read `man 5 sway-input` for more information about this section. + +#output eDP-1 resolution 1440x900 position 1440,0 +# +# Example configuration: +# +# output HDMI-A-1 resolution 1920x1080 position 1920,0 +# +# You can get the names of your outputs by running: swaymsg -t get_outputs +# +#HiDPI displays +#output scale +#output eDP-1 scale 2 + +# Use Mouse+$mod to drag floating windows to their wanted position +floating_modifier $mod + +# start a terminal +bindsym $mod+Return exec $term + +# kill focused window +bindsym $mod+Shift+q kill + +# start dmenu (a program launcher) +bindsym $mod+d exec $menu +# There also is the (new) i3-dmenu-desktop which only displays applications +# shipping a .desktop file. It is a wrapper around dmenu, so you need that +# installed. +# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop + +## change focus +#bindsym $mod+j focus left +#bindsym $mod+k focus down +#bindsym $mod+l focus up +#bindsym $mod+semicolon focus right +bindsym $mod+h focus left +bindsym $mod+j focus down +bindsym $mod+k focus up +bindsym $mod+l focus right + +# alternatively, you can use the cursor keys: +bindsym $mod+Left focus left +bindsym $mod+Down focus down +bindsym $mod+Up focus up +bindsym $mod+Right focus right + +## move focused window +#bindsym $mod+Shift+j move left +#bindsym $mod+Shift+k move down +#bindsym $mod+Shift+l move up +#bindsym $mod+Shift+semicolon move right +bindsym $mod+Shift+h move left +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up +bindsym $mod+Shift+l move right + +# alternatively, you can use the cursor keys: +bindsym $mod+Shift+Left move left +bindsym $mod+Shift+Down move down +bindsym $mod+Shift+Up move up +bindsym $mod+Shift+Right move right + +# split in horizontal orientation +#bindsym $mod+h split h +bindsym $mod+Shift+v split h + +# split in vertical orientation +bindsym $mod+v split v + +# enter fullscreen mode for the focused container +bindsym $mod+f fullscreen toggle + +# change container layout (stacked, tabbed, toggle split) +bindsym $mod+s layout stacking +bindsym $mod+w layout tabbed +bindsym $mod+e layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+space floating toggle + +# change focus between tiling / floating windows +bindsym $mod+space focus mode_toggle + +# focus the parent container +bindsym $mod+a focus parent + +# focus the child container +#bindsym $mod+d focus child + +# Define names for default workspaces for which we configure key bindings later on. +# We use variables to avoid repeating the names in multiple places. +set $ws1 "1" +set $ws2 "2" +set $ws3 "3" +set $ws4 "4" +set $ws5 "5" +set $ws6 "6" +set $ws7 "7" +set $ws8 "8" +set $ws9 "9" +set $ws10 "10" + +# switch to workspace +bindsym $mod+1 workspace $ws1 +bindsym $mod+2 workspace $ws2 +bindsym $mod+3 workspace $ws3 +bindsym $mod+4 workspace $ws4 +bindsym $mod+5 workspace $ws5 +bindsym $mod+6 workspace $ws6 +bindsym $mod+7 workspace $ws7 +bindsym $mod+8 workspace $ws8 +bindsym $mod+9 workspace $ws9 +bindsym $mod+0 workspace $ws10 + +# move focused container to workspace +bindsym $mod+Shift+1 move container to workspace $ws1 +bindsym $mod+Shift+2 move container to workspace $ws2 +bindsym $mod+Shift+3 move container to workspace $ws3 +bindsym $mod+Shift+4 move container to workspace $ws4 +bindsym $mod+Shift+5 move container to workspace $ws5 +bindsym $mod+Shift+6 move container to workspace $ws6 +bindsym $mod+Shift+7 move container to workspace $ws7 +bindsym $mod+Shift+8 move container to workspace $ws8 +bindsym $mod+Shift+9 move container to workspace $ws9 +bindsym $mod+Shift+0 move container to workspace $ws10 + +# reload the configuration file +bindsym $mod+Shift+c reload +# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) +bindsym $mod+Shift+r restart + +# Exit sway (logs you out of your Wayland session) +bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit' + +# resize window (you can also use the mouse for that) +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym j resize shrink width 10 px or 10 ppt + bindsym k resize grow height 10 px or 10 ppt + bindsym l resize shrink height 10 px or 10 ppt + bindsym semicolon resize grow width 10 px or 10 ppt + + # same bindings, but for the arrow keys + bindsym Left resize shrink width 10 px or 10 ppt + bindsym Down resize grow height 10 px or 10 ppt + bindsym Up resize shrink height 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape or $mod+r + bindsym Return mode "default" + bindsym Escape mode "default" + bindsym $mod+r mode "default" +} + +bindsym $mod+r mode "resize" + +# Start i3bar to display a workspace bar (plus the system information i3status +# finds out, if available) +#bar { +# status_command i3status +#} + +#bindsym $mod+F1 exec firefox + +########################################################################33 +## Base16 Default Dark +# Author: Chris Kempson (http://chriskempson.com) +# +# You can use these variables anywhere in the i3 configuration file. + +set $base00 #181818 +set $base01 #282828 +set $base02 #383838 +set $base03 #585858 +set $base04 #b8b8b8 +set $base05 #d8d8d8 +set $base06 #e8e8e8 +set $base07 #f8f8f8 +set $base08 #ab4642 +set $base09 #dc9656 +set $base0A #f7ca88 +set $base0B #a1b56c +set $base0C #86c1b9 +set $base0D #7cafc2 +set $base0E #ba8baf +set $base0F #a16946 + +# Basic bar configuration using the Base16 variables. +bar { + status_command i3status + position top + + mode dock + hidden_state hide + modifier Mod1 + + colors { + background $base00 + separator $base03 + statusline $base04 + + # State Border BG Text + focused_workspace $base05 $base0D $base00 + active_workspace $base05 $base03 $base00 + inactive_workspace $base03 $base01 $base05 + urgent_workspace $base08 $base08 $base00 + binding_mode $base00 $base0A $base00 + } + +# colors { +# background #000000 +# statusline #ffffff +# separator #666666 +# +# focused_workspace #4c7899 #285577 #ffffff +# active_workspace #333333 #5f676a #ffffff +# inactive_workspace #333333 #222222 #888888 +# urgent_workspace #2f343a #900000 #ffffff +# binding_mode #2f343a #900000 #ffffff +# } + +} + +# Toggle between dock mode and hide mode for i3 bar +bindsym $mod+Shift+b bar mode toggle + +# Basic color configuration using the Base16 variables for windows and borders. +# Property Name Border BG Text Indicator Child Border +#client.focused $base05 $base0D $base00 $base0D $base0D +#client.focused_inactive $base01 $base01 $base05 $base03 $base01 +#client.unfocused $base01 $base00 $base05 $base01 $base01 +#client.urgent $base08 $base08 $base00 $base08 $base08 +#client.placeholder $base00 $base00 $base05 $base00 $base00 +#client.background $base07 + +#Can use the following with custom workspace save files to reload layouts +#exec --no-startup-id "i3-msg 'workspace 1; append_layout ~/.config/i3/workspace-1.json'" + +include /etc/sway/config.d/* +exec xrdb -load ~/.Xresources +# exec mako +exec dunst diff --git a/.config/systemd/user/check-battery.timer b/.config/systemd/user/check-battery.timer index f54a309..eb18e4b 100644 --- a/.config/systemd/user/check-battery.timer +++ b/.config/systemd/user/check-battery.timer @@ -1,8 +1,8 @@ [Unit] -Description=Timer to run check-battery.service every 10 minutes +Description=Timer to run check-battery.service every 20 minutes [Timer] -OnCalendar=*:0/10 +OnCalendar=*:0/20 [Install] WantedBy=timers.target diff --git a/.vimrc b/.vimrc index ab55b27..3ea3d28 100644 --- a/.vimrc +++ b/.vimrc @@ -79,7 +79,7 @@ Plug 'majutsushi/tagbar' "Linting " Plug 'neomake/neomake' " Plug 'w0rp/ale' - + "Syntax " Plug 'sheerun/vim-polyglot' " Plug 'matthewbdaly/vim-filetype-settings' @@ -89,6 +89,7 @@ Plug 'majutsushi/tagbar' "External languages " Plug 'Vigemus/iron.nvim' " Plug 'bfredl/nvim-ipy' +" Plug 'jpalardy/vim-slime' " Plug 'jalvesaq/Nvim-R' " Plug 'python-mode/python-mode', { 'branch': 'develop' } @@ -149,15 +150,33 @@ let g:tagbar_type_bib = { "Python repl config let g:python_host_prog = '/usr/bin/python3' let g:loaded_python3_provider = 1 +" let g:slime_target = 'neovim' ":vertical terminal ipython "set updatetime=100 +"split navigations +" nnoremap +" nnoremap +" nnoremap +" nnoremap + "nnoremap yr :IronRepl "nmap ,r (iron-send-motion) "xmap ,r (iron-send-motion) "nmap yR V,r +"R repl config +"" start R with F2 key +"" map RStart +"" imap RStart +"" vmap RStart +"" R version can be specified like this: +"" let vimrplugin_r_path = '/opt/R/3.1.2-release/bin/R' +"" Send selection or line to R with space bar, respectively. +" vmap RDSendSelection +" nmap RDSendLine + "Neomake config " Full config: when writing or reading a buffer, and on changes in insert and " normal mode (after 1s; no delay when writing). @@ -172,6 +191,11 @@ set expandtab " set hlsearch " set spell +" au BufNewFile,BufRead *.js, *.html, *.css + " \ set tabstop=2 + " \ set softtabstop=2 + " \ set shiftwidth=2 +" "Mouse/trackpad pointer config " set mouse=a "already set by defaults.vim set mouse=n @@ -192,7 +216,7 @@ imap jjw :update " Two semicolons are easy to type. The `^ fixes the cursor position. imap ;; `^ inoremap `^ -" imap jk `^ +" imap k `^ " Just press Space to enter insert mode while in normal mode. nmap i " On gvim and Linux console Vim, you can also use ctrl-Space. @@ -258,7 +282,7 @@ if has("gui_running") ":set go+=m or go-=m to toggle menu colorscheme base16-ocean autocmd VimEnter * Goyo - autocmd VimEnter * Limelight0.9 + autocmd VimEnter * Limelight0.8 "Switch cursor blink rate to 0msec set guicursor+=a:blinkon0 endif diff --git a/.xinitrc b/.xinitrc index dfec193..14f9d5c 100644 --- a/.xinitrc +++ b/.xinitrc @@ -31,7 +31,10 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then unset f fi +xset r rate 400 30 systemctl --user start check-battery.timer & +xset +fp /usr/share/fonts/noto/ +xset +fp /usr/share/fonts/liberation/ s #twm & #xclock -geometry 50x50-1+1 &