mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 04:44:03 +01:00
Update misc dotfiles
Image previews in ranger are back, this time using urxvt instead of w3m. Also fixed the screenshot utility and cleaned up some other things.
This commit is contained in:
parent
5a9086fc13
commit
bf0a007487
@ -1,8 +1,5 @@
|
||||
# Easily cd into the "home" directory of any repository you're
|
||||
# working in. Note that this is a function instead of an alias
|
||||
# since `external calls` in aliases are not supported by zsh.
|
||||
# The current aliases file works with fish and other shells like
|
||||
# zsh.
|
||||
# working in.
|
||||
function gh
|
||||
cd (git rev-parse --show-toplevel)
|
||||
end
|
||||
|
@ -3,5 +3,6 @@
|
||||
*/
|
||||
|
||||
.termite {
|
||||
/* Same as URxvt.internalBorder */
|
||||
padding: 30px;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017 Donovan Glover
|
||||
# Copyright (C) 2017-2018 Donovan Glover
|
||||
|
||||
# Make it easier to 1) know what view we're in and 2) select files
|
||||
set line_numbers absolute
|
||||
@ -25,4 +25,9 @@ alias r rename
|
||||
# Alias d to delete
|
||||
alias d delete
|
||||
|
||||
set use_preview_script true
|
||||
set preview_files true
|
||||
set preview_images true
|
||||
set preview_images_method urxvt
|
||||
|
||||
# vim:ft=dosini
|
@ -1,6 +1,7 @@
|
||||
#!/bin/sh
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017-2018 Donovan Glover
|
||||
|
||||
DATETIME=`date +%F_%H%M%S`
|
||||
shotgun ~/$DATETIME.png
|
||||
feh ~/$DATETIME.png --geometry 3200x1800
|
||||
feh ~/$DATETIME.png --geometry 3200x1800 --scale-down
|
@ -2,14 +2,14 @@
|
||||
# Copyright (C) 2017-2018 Donovan Glover
|
||||
|
||||
[options]
|
||||
# 3 fonts of preference, sorted by readability
|
||||
font = Hack 12
|
||||
#font = Inconsolata 14
|
||||
#font = Fira Mono 12
|
||||
font = Hack 11
|
||||
|
||||
# No need to show the mouse in the terminal window
|
||||
mouse_autohide = true
|
||||
|
||||
# Note: If you want terminal transparency, you can use RGBA.
|
||||
# Example: background = rgba(0, 0, 0, 0.9)
|
||||
|
||||
[colors]
|
||||
foreground = #D0D0D0
|
||||
foreground_bold = #E0E0E0
|
@ -4,7 +4,7 @@ root = true
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
indent_size = 4
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
|
5
dots/common/.gitignore → .gitignore
vendored
5
dots/common/.gitignore → .gitignore
vendored
@ -1,6 +1,9 @@
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017 Donovan Glover
|
||||
# Copyright (C) 2017-2018 Donovan Glover
|
||||
|
||||
# Don't track temporary vim files
|
||||
*~
|
||||
.*.sw*
|
||||
|
||||
# Don't track Plasma directory files
|
||||
.directory
|
@ -1,9 +1,8 @@
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017-2018 Donovan Glover
|
||||
|
||||
# Source the .Xresources and .xmodmap files
|
||||
# Source the .Xresources file
|
||||
xrdb -merge ~/.Xresources
|
||||
xmodmap ~/.xmodmap
|
||||
|
||||
# Source the files in the xinitrc.d directory
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||
@ -13,16 +12,7 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||
unset f
|
||||
fi
|
||||
|
||||
# Never blank the screen (disable power saving)
|
||||
xset s off -dpms
|
||||
|
||||
# Start compton
|
||||
compton -b
|
||||
|
||||
# Set the desktop background
|
||||
feh --no-fehbg --bg-fill ~/.config/feh/back.png
|
||||
|
||||
# Start the window manager
|
||||
exec bspwm
|
||||
|
||||
# vim:ft=zsh
|
||||
# vim:ft=sh
|
Loading…
Reference in New Issue
Block a user