A few things to work with FreeBSD

This commit is contained in:
Colin Powell
2020-01-27 01:01:51 -05:00
parent 9d9fc04c39
commit adc472661f
3 changed files with 13 additions and 29 deletions

View File

@ -26,8 +26,10 @@ window:
# Blank space added around the window in pixels. This padding is scaled # Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides. # by DPI and the specified value is always added at both opposing sides.
padding: padding:
x: 2 x: 15
y: 2 y: 15
dynamic_padding: true
# Window decorations # Window decorations
# #
@ -56,15 +58,6 @@ scrolling:
# scrollback is enabled (history > 0). # scrollback is enabled (history > 0).
multiplier: 3 multiplier: 3
# Faux Scrolling
#
# The `faux_multiplier` setting controls the number of lines the terminal
# should scroll when the alternate screen buffer is active. This is used
# to allow mouse scrolling for applications like `man`.
#
# Specifying `0` will disable faux scrolling.
faux_multiplier: 3
# Scroll to the bottom when new text is written to the terminal. # Scroll to the bottom when new text is written to the terminal.
auto_scroll: false auto_scroll: false
@ -81,24 +74,24 @@ tabspaces: 8
font: font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Iosevka family: Go Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
#style: Regular #style: Regular
# Bold font face # Bold font face
bold: bold:
family: Iosevka family: Go Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
#style: Bold #style: Bold
# Italic font face # Italic font face
italic: italic:
family: Iosevka family: Go Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
#style: Italic #style: Italic
# Point size # Point size
size: 10.0 size: 7.0
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -119,9 +112,6 @@ font:
# it is recommended to set `use_thin_strokes` to `false` # it is recommended to set `use_thin_strokes` to `false`
use_thin_strokes: true use_thin_strokes: true
# Display the time it takes to redraw each frame.
render_timer: false
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# This Script downloads National Geographic Photo of the day, and sets it as desktop background (gnome, unity) # This Script downloads National Geographic Photo of the day, and sets it as desktop background (gnome, unity)
# Copyright (C) 2012 Saman Barghi - All Rights Reserved # Copyright (C) 2012 Saman Barghi - All Rights Reserved
# Permission to copy, modify, and distribute is granted under GPLv3 # Permission to copy, modify, and distribute is granted under GPLv3
@ -7,6 +7,7 @@
# For feh, we need display set properly # For feh, we need display set properly
export DISPLAY=:0.0 export DISPLAY=:0.0
export XAUTHORITY=/home/powellc/.Xauthority
# Get daily Astrobin PotD # Get daily Astrobin PotD

View File

@ -1,13 +1,6 @@
#!/bin/sh #!/bin/sh
STATE=`nmcli networking connectivity` notmuch search --output=files tag:deleted | xargs -0 rm
notmuch new
if [ $STATE = 'full' ] muchsync rhea.unbl.ink
then
notmuch search --output=files tag:deleted | xargs -l rm
notmuch new
muchsync rhea.unbl.ink
exit 0
fi
echo "No internet connection"
exit 0 exit 0