Move ranger, polybar, and w3m to stow

This commit is contained in:
Donovan Glover 2018-02-27 15:07:50 -05:00
parent 67f07825fc
commit d90a303312
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D
6 changed files with 64 additions and 111 deletions

View File

@ -1,28 +0,0 @@
##################################################################################
#
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
##################################################################################
# Terminate any previous instances of polybar
killall -q polybar
# Wait until there are no more polybar instances running
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Start polybar
polybar main &

View File

@ -1,62 +0,0 @@
##################################################################################
#
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
##################################################################################
# Set the color scheme
set colorscheme jungle
# Make the columns gradually increase in size
set column_ratios 1,3,5
# Give everything a little more focus
set draw_borders true
# Make it easier to manage tabs
set dirname_in_tabs true
# Make it easier to 1) know what view we're in and 2) select files
set line_numbers absolute
# Remove the unused space on the right since we won't be using a mouse
set padding_right false
# Disable previews for all the things
set preview_images true
set use_preview_script true
set preview_images_method w3m
# Use ~ when in the home directory
set tilde_in_titlebar true
# Show version control information
set vcs_aware true
# Always confirm that you want to delete something
set confirm_on_delete always
# Don't save the console history on exit
set save_console_history false
# Disable the mouse input to avoid opening random stuff
set mouse_enabled false
# Alias r to rename
alias r rename
# vim:ft=dosini

View File

@ -1,22 +1,5 @@
##################################################################################
#
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
##################################################################################
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017-2018 Donovan Glover
[color]
background = ${xrdb:color0:#19171C}
@ -36,12 +19,12 @@ background = ${color.background}
font-0 = "Fira Mono:size=22"
font-1 = "Noto Sans CJK JP:size=22"
height = 88
height = 80
padding-left = 2
padding-right = 2
module-margin = 1
border-bottom-color = ${color.text}
border-bottom-size = 3
#border-bottom-size = 2
[module/bspwm]
type = internal/bspwm

View File

@ -0,0 +1,11 @@
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover
# Terminate any previous instances of polybar
killall -q polybar
# Wait until there are no more polybar instances running
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Start polybar
polybar main &

View File

@ -0,0 +1,49 @@
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover
# Set the color scheme
set colorscheme jungle
# Make the columns gradually increase in size
set column_ratios 1,3,5
# Give everything a little more focus
set draw_borders true
# Make it easier to manage tabs
set dirname_in_tabs true
# Make it easier to 1) know what view we're in and 2) select files
set line_numbers absolute
# Remove the unused space on the right since we won't be using a mouse
set padding_right false
# Disable previews for all the things
set preview_images true
#set preview_max_size 1
set use_preview_script true
set preview_images_method w3m
# Use ~ when in the home directory
set tilde_in_titlebar true
# Show version control information
set vcs_aware true
# Always confirm that you want to delete something
set confirm_on_delete always
# Don't save the console history on exit
set save_console_history false
# Disable the mouse input to avoid opening random stuff
set mouse_enabled false
# Alias r to rename
alias r rename
# Alias d to delete
alias d delete
# vim:ft=dosini