pulled yoga2

This commit is contained in:
2019-05-03 02:20:07 +00:00
27 changed files with 566 additions and 136 deletions
+5
View File
@@ -0,0 +1,5 @@
kernel cmdline altered in /boot/refind.conf
added: i915.enable_psr=0 to workaround intel drm bug(appeared with kernel 4.6)
removed xf86-video-intel in attempt to fix above bug, system appears 'smoother' without
it, so leaving it out for now.
+7
View File
@@ -6,3 +6,10 @@ currently the repo is .dotfiles in ~ with symlinks from the default file to it's
#### naming conventions #### naming conventions
Kernels: kernel.*machine-name* ie kernel.yoga2 Kernels: kernel.*machine-name* ie kernel.yoga2
<<<<<<< HEAD
=======
#### Local config
Notes on local configuration stuff are in Local-config.*machine-name* ir Local-config.yoga2
Things included kernel cmdline, Xorg config, other customizations for working around bugs
or hardware issues.
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
+3 -58
View File
@@ -1,13 +1,13 @@
!Xft settings !Xft settings
Xft*dpi: 96 Xft*dpi:192
Xft*antialias: true Xft*antialias: true
Xft*hinting: true Xft*hinting: true
Xft*hintstyle: full Xft*hintstyle: full
Xft*rgba: rgb Xft*rgba: rgb
!Xcursor !Xcursor
Xcursor.theme: gentoo-blue Xcursor.theme: Bluecurve
Xcursor.size: 22 Xcursor.size: 42
!xterm !xterm
xterm*termName: xterm-256color xterm*termName: xterm-256color
@@ -16,58 +16,3 @@ xterm*savelines: 4096
xterm*VT100.geometry: 80x32 xterm*VT100.geometry: 80x32
xterm*faceName: incosolata-10 xterm*faceName: incosolata-10
xterm*utf8: 1 xterm*utf8: 1
#define S_base03 #002b36
#define S_base02 #073642
#define S_base01 #586e75
#define S_base00 #657b83
#define S_base0 #839496
#define S_base1 #93a1a1
#define S_base2 #eee8d5
#define S_base3 #fdf6e3
#define S_yellow #b58900
#define S_orange #cb4b16
#define S_red #dc322f
#define S_magenta #d33682
#define S_violet #6c71c4
#define S_blue #268bd2
#define S_cyan #2aa198
#define S_green #859900
*background: S_base03
*foreground: S_base00
*cursorColor: S_base1
*pointerColorBackground:S_base01
*pointerColorForeground:S_base1
!! black dark/light
*color0: S_base02
*color8: S_base03
!! red dark/light
*color1: S_red
*color9: S_orange
!! green dark/light
*color2: S_green
*color10: S_base01
!! yellow dark/light
*color3: S_yellow
*color11: S_base00
!! blue dark/light
*color4: S_blue
*color12: S_base0
!! magenta dark/light
*color5: S_magenta
*color13: S_violet
!! cyan dark/light
*color6: S_cyan
*color14: S_base1
!! white dark/light
*color7: S_base2
*color15: S_base3
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
alias pacman='sudo pacman'
alias pacupg='pacman -Syu'
alias pacins='pacman -U'
alias pacdiff='sudo pacdiff'
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
#script to update packages installed from aur
#uses cower -ud and makepkg -i
#written because meat stopped working
#path variables
AURBUILD=/tmp/makepkg
#create necessary dirs if not exist
mkdir -p ${AURBUILD}
cower --update --download --target=${AURBUILD}
cd ${AURBUILD}
for dir in ${AURBUILD}/*
do
cd ${dir}
twmnc -t "aur-build" -c "building ${dir}" -d 5000
makepkg --install
cd ${AURBUILD}
rm -r ${dir}
done
+23 -14
View File
@@ -12,15 +12,31 @@ if [[ $- != *i* ]] ; then
return return
fi fi
# Put your fun stuff here. #Shell Variables
PATH="/home/ewpt3ch/bin:/home/ewpt3ch/tmux:${PATH}:./:"
export EDITOR=nvim
export PAGER=less
export LIBVA_DRIVER_NAME=vdpau
export BROWSER=firefox-developer
export GOPATH="/home/ewpt3ch/go"
#Create dirs for things that won't themselves
mkdir -p /tmp/ewpt3ch-cache/chrome
mkdir -p /tmp/ewpt3ch-cache/chromium
mkdir -p /tmp/makepkg
#source /etc/profile.d/bash-completion.sh #source /etc/profile.d/bash-completion.sh
source ~/todo.txt-cli/todo_completion #source ~/todo.txt-cli/todo_completion
#pacman aliases #pacman aliases
alias pacman='sudo pacman' alias pacman='sudo pacman'
alias pacupg='pacman -Syu' alias pacupg='pacman -Syu'
alias pacins='pacman -U' alias pacins='pacman -U'
# #
alias t='clear && $HOME/Dropbox/todo/todo.sh -d $HOME/Dropbox/todo/todo.cfg' source ~/bin/npm_completion
#bring in aliases for arch
source ~/.dotfiles/archalias.bash
#alias
alias vim='nvim'
alias nano='nano -w' alias nano='nano -w'
alias ls='ls --color=auto' alias ls='ls --color=auto'
alias grep='grep --color=auto' alias grep='grep --color=auto'
@@ -34,14 +50,7 @@ export PAGER=less
export LIBVA_DRIVER_NAME=vdpau export LIBVA_DRIVER_NAME=vdpau
#create cache-dir for chrome #create cache-dir for chrome
mkdir -p /tmp/ewpt3ch-cache mkdir -p /tmp/ewpt3ch-cache
eval $(keychain --eval --agents ssh -Q --quiet ~/.ssh/id_ecdsa ~/.ssh/id_rsa) eval $(keychain --eval --agents ssh -Q --quiet ~/.ssh/id_ed25519)
#Check if dropbox is running export NVM_DIR="/home/ewpt3ch/.nvm"
if dropbox.py running ; then [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
#start dropbox [[ -r $NVM_DIR/bash_completion ]] && . $NVM_DIR/bash_completion
~/bin/dropbox.py start
fi
#check if btsync running and start
#if ! ps -A | grep -q btsync ; then
#start btsync
# btsync --config ~/.config/btsync/btsync.conf
#fi
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/bin/bash
#script to make blogging easier
#activate nikola
source ~/nikola/bin/activate
#create a new post
cd ~/myblog
nikola new_post -e
#build the new site
nikola build
#deploy
rsync -av --delete output/ ewpt3ch.com:/srv/http/ewpt3ch.com/blog/
#deactivate nikola
deactivate
+4
View File
@@ -1,2 +1,6 @@
#!/bin/bash #!/bin/bash
<<<<<<< HEAD
exec google-chrome-beta --disk-cache-dir="/tmp/ewpt3ch-cache" exec google-chrome-beta --disk-cache-dir="/tmp/ewpt3ch-cache"
=======
exec google-chrome-beta --disk-cache-dir="/tmp/ewpt3ch-cache/chrome"
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
+4
View File
@@ -4,7 +4,11 @@ then
status=`cmus-remote -Q | grep status | awk '{print $2}'` status=`cmus-remote -Q | grep status | awk '{print $2}'`
if [ $status == "paused" ] if [ $status == "paused" ]
then then
<<<<<<< HEAD
status="ç" status="ç"
=======
status="→"
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
else else
status="æ" status="æ"
fi fi
-15
View File
@@ -1,15 +0,0 @@
# Check http://conky.sf.net for an up-to-date-list.
background no
format_human_readable yes
out_to_console yes
out_to_x no
#use_xft yes
#xftfont DroidSansMono:size=10
#xftalpha 0.8
update_interval 2
total_run_times 0
use_spacer none
TEXT
${exec ~/bin/cmus-stats.sh} ${exec ~/bin/volume.sh} ${exec ~/bin/power.sh} ${wireless_essid wlp0s29f7u1} ${addr wlp0s29f7u1} $time
+1
View File
@@ -97,6 +97,7 @@ TERM xterm-256color
TERM xterm-88color TERM xterm-88color
TERM xterm-color TERM xterm-color
TERM xterm-debian TERM xterm-debian
TERM xterm-termite
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output) # EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
EIGHTBIT 1 EIGHTBIT 1
Executable
+28
View File
@@ -0,0 +1,28 @@
#!/bin/bash
#based on https://github.com/cdown/passmenu
#and jasnowryan.com/blog
shopt -s nullglob globstar
nb='#2F4F4F'
nf='#00FFFF'
sb='#2F4F4F'
sf='#ADFF2F'
font="Inconsolataicon-12"
dmenucmd=( dmenu -i -fn "$font" -nb "$nb" -nf "$nf" -sb "$sb" -sf "$sf" )
prefix=${PASSWORD_STORE_DIR:-~/.password-store}
files=( "$prefix"/**/*.gpg )
files=( "${files[@]#"$prefix"/}" )
files=( "${files[@]%.gpg}" )
fbase=( "${files[@]##*/}" )
word=$(printf '%s\n' "${fbase[@]}" | "${dmenucmd[@]}" "$@")
if [[ -n $word ]]; then
for match in "${files[@]}"; do
if [[ $word == ${match#*/} ]]; then
/usr/bin/pass show -c "$match" 2>/dev/null
fi
done
fi
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
# Script to start dwm in loop
while true; do
$HOME/bin/dwmstatus
sleep 2
done &
while true; do
dwm >/dev/null
# to log stderrors to a file
#dwm 2> /tmp/dwm.log
done
+34 -3
View File
@@ -5,17 +5,30 @@
/* appearance */ /* appearance */
static const char font[] = "Inconsolataicon-12"; static const char font[] = "Inconsolataicon-12";
<<<<<<< HEAD
#define NUMCOLORS 9 #define NUMCOLORS 9
=======
#define NUMCOLORS 9
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
static const char colors[NUMCOLORS][ColLast][9] = { static const char colors[NUMCOLORS][ColLast][9] = {
// border foreground background // border foreground background
{ "#212121", "#00FFFF", "#2F4F4F" }, // 0 = normal { "#212121", "#00FFFF", "#2F4F4F" }, // 0 = normal
{ "#696969", "#ADFF2F", "#2F4F4F" }, // 1 = selected { "#696969", "#ADFF2F", "#2F4F4F" }, // 1 = selected
<<<<<<< HEAD
{ "#212121", "#F8F8FF", "#C71585" }, // 2 = urgent { "#212121", "#F8F8FF", "#C71585" }, // 2 = urgent
{ "#212121", "#90EE90", "#778899" }, // 3 = important { "#212121", "#90EE90", "#778899" }, // 3 = important
{ "#212121", "#FFFF00", "#2F4F4F" }, // 4 = yellow { "#212121", "#FFFF00", "#2F4F4F" }, // 4 = yellow
{ "#212121", "#00BFFF", "#2F4F4F" }, // 5 = blue { "#212121", "#00BFFF", "#2F4F4F" }, // 5 = blue
{ "#212121", "#00FFFF", "#2F4F4F" }, // 6 = cyan { "#212121", "#00FFFF", "#2F4F4F" }, // 6 = cyan
{ "#212121", "#FF00FF", "#2F4F4F" }, // 7 = magenta { "#212121", "#FF00FF", "#2F4F4F" }, // 7 = magenta
=======
{ "#212121", "#F8F8FF", "#C71585" }, // 2 = urgent
{ "#212121", "#90EE90", "#778899" }, // 3 = important
{ "#212121", "#FFFF00", "#2F4F4F" }, // 4 = yellow
{ "#212121", "#00BFFF", "#2F4F4F" }, // 5 = blue
{ "#212121", "#00FFFF", "#2F4F4F" }, // 6 = cyan
{ "#212121", "#FF00FF", "#2F4F4F" }, // 7 = magenta
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
{ "#212121", "#F5F5F5", "#2F4F4F" }, // 8 = grey { "#212121", "#F5F5F5", "#2F4F4F" }, // 8 = grey
}; };
static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int borderpx = 1; /* border pixel of windows */
@@ -56,25 +69,43 @@ static const Layout layouts[] = {
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */ /* commands */
<<<<<<< HEAD
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", colors[0][ColBG], "-nf", colors[0][ColFG], "-sb", colors[1][ColBG], "-sf", colors[1][ColFG], NULL }; static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", colors[0][ColBG], "-nf", colors[0][ColFG], "-sb", colors[1][ColBG], "-sf", colors[1][ColFG], NULL };
=======
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", colors[0][ColBG], "-nf", colors[0][ColFG], "-sb", colors[1][ColBG], "-sf", colors[1][ColFG], NULL };
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
static const char *termcmd[] = { "termite", NULL }; static const char *termcmd[] = { "termite", NULL };
/*functions for volume control*/ /*functions for volume control*/
static const char *upvol[] = { "amixer", "sset", "Master", "1%+", NULL}; static const char *upvol[] = { "volumeset", "up", NULL };
static const char *downvol[] = { "amixer", "sset", "Master", "1%-", NULL}; static const char *downvol[] = { "volumeset", "down", NULL };
static const char *mute[] = { "amixer", "sset", "Master", "toggle", NULL}; static const char *mute[] = { "volumeset", "mute", NULL };
/*cmus functions*/ /*cmus functions*/
static const char *cmusplaypause[] = { "cmus-remote", "-u", NULL}; static const char *cmusplaypause[] = { "cmus-remote", "-u", NULL};
static const char *cmusnext[] = { "cmus-remote", "--next", NULL}; static const char *cmusnext[] = { "cmus-remote", "--next", NULL};
static const char *cmusprev[] = { "cmus-remote", "--prev", NULL}; static const char *cmusprev[] = { "cmus-remote", "--prev", NULL};
/*screenshot*/
static const char *screenshot[] = { "scrot", NULL};
/*multi-head*/
static const char *multihead[] = { "hdmi-plug.sh", NULL};
static Key keys[] = { static Key keys[] = {
/* modifier key function argument */ /* modifier key function argument */
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol} }, { 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol} },
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol} }, { 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol} },
{ 0, XF86XK_AudioMute, spawn, {.v = mute } }, { 0, XF86XK_AudioMute, spawn, {.v = mute } },
<<<<<<< HEAD
{ MODKEY, XK_u, spawn, {.v = cmusplaypause} }, { MODKEY, XK_u, spawn, {.v = cmusplaypause} },
{ MODKEY, XK_bracketright, spawn, {.v = cmusnext} }, { MODKEY, XK_bracketright, spawn, {.v = cmusnext} },
{ MODKEY, XK_bracketleft, spawn, {.v = cmusprev} }, { MODKEY, XK_bracketleft, spawn, {.v = cmusprev} },
=======
{ 0, XF86XK_AudioPlay, spawn, {.v = cmusplaypause} },
{ 0, XF86XK_AudioPause, spawn, {.v = cmusplaypause} },
{ MODKEY, XK_u, spawn, {.v = cmusplaypause} },
{ MODKEY, XK_bracketright, spawn, {.v = cmusnext} },
{ MODKEY, XK_bracketleft, spawn, {.v = cmusprev} },
{ MODKEY|ControlMask, XK_s, spawn, {.v = screenshot} },
{ MODKEY|ControlMask, XK_m, spawn, {.v = multihead} },
>>>>>>> 2f6f026bc689f7612d2a67cfd9ae8478510dd898
{ MODKEY, XK_p, spawn, {.v = dmenucmd } }, { MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_b, togglebar, {0} },
Executable
+117
View File
@@ -0,0 +1,117 @@
#!/bin/bash
# status script for dwm
# influenced by:
# https://bitbucket.org/jasonwryan/shiv/Scripts/dwm-status
# https://github.com/w0ng/bin/blob/master/dwm-statusbar
########################
## eric@ewpt3ch.com ####
## dwmstatus ###########
########################
# colors from dwm.config.h
color_normal="\x01" #normal
color_selected="\x02" #selected
color_urgent="\x03" #urgent
color_important="\x04" #important
color_yellow="\x05" #yellow
color_blue="\x06" #blue
color_cyan="\x07" #cyan
color_magenta="\x08" #magenta
color_grey="\x09" #grey
# Icon glyphs from Inconsolataicon
glyph_cpu="\u01B0"
glyph_mem="\u01B1"
glyph_dl="\u01A5"
glyph_pow="\u01B2"
glyph_clk="\u01Af"
glyph_bln="\u01AA"
glyph_msc="\u01AB"
glyph_vol="\u01AC"
glyph_mute="\u01B4"
glyph_mail="\u01AD"
glyph_wifi="\u01AE"
glyph_plug="\u01A4"
# Song info
msc(){
if [ -x /usr/bin/cmus-remote ]
then
artist=`cmus-remote -Q | grep -w artist | cut -d ' ' -f3-`
song=`cmus-remote -Q | grep title | cut -d ' ' -f3-`
song_info=${artist}-${song}
fi
echo -ne "${color_selected}${glyph_msc} ${song_info}${color_normal}"
}
#Date
dte(){
datetime="$(date "+%F %T")"
echo -ne "${color_selected}${glyph_clk} ${datetime}${color_normal}"
}
#Power and Battery
bat(){
on1="$(</sys/class/power_supply/ADP1/online)"
charge="$(</sys/class/power_supply/BAT1/capacity)"
if [[ $on1 -eq "0" && $charge -lt "25" ]]
then
#below 25%
echo -ne "${color_urgent}${glyph_pow} ${charge}%${color_normal}"
#send pushbullet to phone
if [[ ! -f /run/user/1050/batpush ]]
then
touch /run/user/1050/batpush
battery-push
fi
elif [[ $on1 -eq "0" && $charge -lt "35" ]]
then
#between 25% and 35%
echo -ne "${color_important}${glyph_pow} ${charge}%${color_normal}"
elif [ $on1 -eq "0" ]
then
#above 50%
echo -ne "${color_selected}${glyph_pow} ${charge}%${color_normal}"
else
#charging
echo -ne "${color_selected}${glyph_plug} ${charge}%${color_normal}"
#reset battery push
if [[ -f /run/user/1050/batpush ]]
then
rm /run/user/1050/batpush
fi
fi
}
#Volume
vol(){
mute=`amixer get Master | grep "Front Left:" | awk '{print $6}'`
if [ ${mute} == "[on]" ]
then
echo -ne "${glyph_vol}"
else
echo -ne "${glyph_mute}"
fi
}
#Memory
mem(){
memused="$(free -m | awk 'NR==2 {print $3}')"
echo -ne "${glyph_mem}${memused}M"
}
#CPU
load(){
cpu="$(cat /proc/loadavg | awk '{print $1, $2, $3}')"
echo -ne "${glyph_cpu} ${cpu}"
}
#Internet Connection
int(){
host google.com > /dev/null &&
echo -ne "${glyph_wifi}" || echo -ne "${color_important}${glyph_wifi}${color_normal}"
}
# Pipe to statusbar
xsetroot -name "$(msc) $(vol) $(load) $(mem) $(int) $(bat) $(dte) "
+19
View File
@@ -0,0 +1,19 @@
####How to install and maintain GPG keys on my Yubikey
From: [PGP and SSH on Yubikey](https://www.esev.com/blog/post/2015-01-pgp-ssh-key-on-yubikey-neo/)
We want to keep out Master Key on a USB drive that a) doesn't leave the house or office and b) is rarely connected to a computer. You can also use a livecd and airgapped machine for even more security. I deem for my attack profile that having the Master Key offline most of the time is good enough. This may change in the future. My USB drive is also used to back up sensitive info so gpg stuff is under gnupg/
```bash
#Store Master key on USB drive
mv .gnupg .gnupg.orig
ln -s /PATHTOUSBDRIVE/gnupg .gnupg
#Check gpg.conf for strong hash and encryption preferences
cert-digest-algo SHA512
default-preference-list SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES
#generate a Master key if there isn't one
#if we have a secret key
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
status=$(cat /sys/class/drm/card0-HDMI-A-1/status)
if [ $status = 'connected' ]; then
xrandr --output eDP-1 --auto --output HDMI-1 --auto --scale 2x2 --right-of eDP-1
twmnc -t 'display' -c 'HDMI plugged'
else
xrandr --output HDMI-1 --off
twmnc -t 'display' -c 'HDMI unplugged'
fi
+71
View File
@@ -0,0 +1,71 @@
## | InterobangRC
## |
## | Lines starting with a # are ignored as comments, but this file is
## | not processed by a shell interpreter.
## BASIC CONFIGURATION
#set font = fixed
set font = -*-terminus-medium-*-*-*-32-*-*-*-*-*-*-*
set geometry = top
set geometry = 3200x35-1+0
set colors = #00FFFF #2F4F4F #48E084 #242424 #64FFAA #484848
set border = 0px #BBE0EE
set bangchar = !
set run_hook = %s
#set run_hook = %s || (notify-send "Error: command not found";interrobang)
#set autocomp = 1
set list = true
set last = true
set margin = -80
set shell = /bin/bash
set flags = -c
## COMMON BANGS AND COMPLETITON OPTIONS
bang term = termite -e %s
bang web = ewpt3chfirefox %s
bang pdf = mupdf %s
bang man = termite -e man %s
bang ddg = ewpt3chfirefox https://duckduckgo.com/?q=%s
bang calc = echo "interrobang ignored \"%s\""
bang ? = echo "interrobang ignored \"%s\""
tab default = percontation "%s" %s | sort -u
tab calc = str="%s%s"; echo "!calc $(echo ${str#\!calc} | bc -l)"
tab ? = ignore="%s%s"; awk '/^bang/ {print "!"$2" ";}' ~/.interrobangrc
## EXAMPLES OF COMPLEX COMPLETION OR SCRIPTING
#####
## percontation can find .desktop files:
## path: (default) show binaries in $PATH
## desktop: list desktop files that match
## desktop+: same as above, plus substring matching with comments
## NOTE: see the desktop bang definition below
## compgen uses bash's default completion
#tab default = percontation desktop path "%s" %s | sort -u
#tab default = percontation desktop+ path "%s" %s | sort -u
#tab default = compgen -P "%s" -cf %s
#####
## Example logout tool:
## uncomment the following bang and tab lines
#bang logout = case "%s" in shutdown) sudo systemctl poweroff ;; sleep) sudo systemctl suspend ;; reboot) sudo systemctl reboot ;; logout) killall xinit ;; cancel) exit ;; esac
#tab logout = echo -e "cancel\nshutdown\nsleep\nreboot\nlogout" | grep "^%s%s"
#####
## desktop bangs
## The first version ignores any parameters to the desktop file and
## just executes the associated binary
## The second version passes parameters and parses the desktop file
## properly, but requires an external tool to do so. This tool
## is not included in the interrobang package.
#bang desktop = ARG="%s"; FILE=$(find /usr/share/applications/ -name ${ARG%% *}.desktop | head -1); $(awk '/^Exec=/ {sub(/Exec=/,"",$1); print $1;}' $FILE)
#bang desktop = ARG="%s"; FILE=$(find /usr/share/applications/ -name ${ARG%% *}.desktop | head -1); PARAM=${ARG#* }; desktop-exec $FILE $PARAM
+29
View File
@@ -0,0 +1,29 @@
#fetch passwords
source "gpg -dq $HOME/.mutt/zoho-mutt-pass.gpg |"
#ewpt3ch.com imap
set folder = imaps://imappro.zoho.com
set imap_user = eric@ewpt3ch.com
set imap_pass = $my_pass
set spoolfile = +INBOX
mailboxes = +INBOX
set imap_keepalive = 300
set mail_check = 120
#ewpt3ch.com smtp
set realname = 'Eric W Phillips'
set from = eric@ewpt3ch.com
set use_from = yes
set smtp_url=smtps://$imap_user:$imap_pass@smtp.zoho.com
#options for gpgme
set crypt_use_gpgme = yes
set crypt_replysign = yes
set crypt_replyencrypt = yes
set crypt_replysignencrypted = yes
set crypt_verify_sig = yes
#view html in a browser
set mailcap_path = ~/.mutt/mailcap
alternative_order text/plain text/html
auto_view text/html
+2
View File
@@ -3,6 +3,8 @@
temp-day=6300 temp-day=6300
temp-night=4000 temp-night=4000
transition=1 transition=1
location-provider=manual
[manual] [manual]
;denver ;denver
+32 -18
View File
@@ -1,33 +1,47 @@
#Customizations #Customizations
[options] [options]
font = Inconsolata 10 font = Inconsolata 12
urgent_on_bell = true
# Solarized dark color scheme # Solarized dark color scheme
[colors] [colors]
foreground = #839496
foreground_bold = #eee8d5 # special
#foreground_dim = #888888 foreground = #93a1a1
background = #002b36 foreground_bold = #93a1a1
cursor = #93a1a1 cursor = #93a1a1
background = #002b36
# if unset, will reverse foreground and background # black
#highlight = #839496 color0 = #002b36
color8 = #657b83
# colors from color0 to color254 can be set # red
color0 = #073642
color1 = #dc322f color1 = #dc322f
color9 = #dc322f
# green
color2 = #859900 color2 = #859900
color10 = #859900
# yellow
color3 = #b58900 color3 = #b58900
color11 = #b58900
# blue
color4 = #268bd2 color4 = #268bd2
color5 = #d33682 color12 = #268bd2
color6 = #2aa198
color7 = #eee8d5 # magenta
color8 = #002b36 color5 = #6c71c4
color9 = #cb4b16
color10 = #586e75
color11 = #657b83
color12 = #839496
color13 = #6c71c4 color13 = #6c71c4
color14 = #93a1a1
# cyan
color6 = #2aa198
color14 = #2aa198
# white
color7 = #93a1a1
color15 = #fdf6e3 color15 = #fdf6e3
+31
View File
@@ -0,0 +1,31 @@
[gui]
absolute_position=
always_on_top=true
background_color=#4B0082
bounce=true
bounce_duration=500
font=Inconsolataicon
font_size=50
font_variant=medium
foreground_color=#7FF000
height=55
in_animation=38
in_animation_duration=1000
opacity=100
out_animation=13
out_animation_duration=1000
position=top_right
screen=
[icons]
critical_icon=
info_icon=
warning_icon=
[main]
activate_command=
duration=3000
enable_shortcuts=true
host=127.0.0.1
port=9797
sound_command=
-8
View File
@@ -1,8 +0,0 @@
syntax enable
set background=dark
colorscheme solarized
set smartindent
set tabstop=2
set shiftwidth=2
set expandtab
iabbrev <// </<C-X><C-O>
-9
View File
@@ -1,9 +0,0 @@
#!/bin/bash
mute=`amixer get Master | grep "Front Left:" | awk '{print $6}'`
if [ $mute == "[on]" ]
then
vol=`amixer get Master | grep "Front Left:" | awk '{print $5}' | tr -d '[]'`
echo "ì" $vol
else
echo "ë"
fi
Executable
+31
View File
@@ -0,0 +1,31 @@
#!/bin/bash
# script for changing the volume and sending
# notification to twmn using twmnc
step=1
sink="@DEFAULT_SINK@"
if [[ $# -eq 1 ]]; then
case $1 in
"up")
pactl set-sink-mute $sink false
pactl set-sink-volume $sink +$step%
direction='increased to';;
"down")
pactl set-sink-volume $sink -$step%
direction='decreased to';;
"mute")
pactl set-sink-mute $sink toggle;;
*)
echo "Invalid option";;
esac
fi
muted=`pactl list sinks | grep "Mute" | awk '{print $2}'`
vol=`pactl list sinks | grep "front-left" | awk '{print $5}'`
if [[ $muted == "yes" ]]; then
twmnc -t 'volume' -c 'muted' -d 100
else
twmnc -t 'volume' -c "${direction}${vol}" -d 100
fi
+42 -6
View File
@@ -1,7 +1,43 @@
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources #!/bin/sh
#exec openbox-session
conky | while read -r; do xsetroot -name "$REPLY"; done & userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
redshift & redshift &
pulseaudio --start & unclutter -noevents &
google-musicmanager & setxkbmap -layout us -option ctrl:nocaps &
exec dbus-launch --exit-with-session --sh-syntax dwm twmnd &
exec $HOME/bin/dwm-start
+8
View File
@@ -0,0 +1,8 @@
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
tresorit --hidden &
redshift &
start-pulseaudio-x11 &
google-musicmanager &
unclutter -noevents &
setxkbmap -layout us -option ctrl:nocaps &
exec dbus-launch --exit-with-session --sh-syntax $HOME/bin/dwm-start