Hisfantor's Blog

December 26 2018

Desktop updates:

gpicview		#picture viewer
evince			#pdf viewer
lxappearance		#gtk styling and iconpack

Notebook:

remounting with read write rights

rubiks cube

git branches1

$ git checkout -b [name_of_your_new_branch]
$ git commit -am "msg"
$ git push origin [name_of_your_new_branch]

git prompt2

source ~/.git-prompt.sh
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\] \[\033[33;1m\]\w\[\033[m\] (\$(git branch 2>/dev/nul    l | grep '^*' | colrm 1 2)) \$ "

pulseaudio shortcuts3

bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% #increase sound volume4 
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% #decrease sound volume 
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound

new settings:

bindsym XF86AudioRaiseVolume exec --no-startup-id amixer -D pulse sset Master 5%+ #increase sound volume
bindsym XF86AudioLowerVolume exec --no-startup-id amixer -D pulse sset Master 5%- #decrease sound volume
bindsym XF86AudioMute exec --no-startup-id amixer -D pulse set Master 1+ toggle # mute sound

alsamixer

knowledge sauces: