]> git.sev.monster Git - dotfiles.git/commitdiff
urxvt perl extensions, Xresources changes
authords6 <git@ds6.pw>
Thu, 11 Jan 2018 07:44:56 +0000 (01:44 -0600)
committerds6 <git@ds6.pw>
Thu, 11 Jan 2018 07:44:56 +0000 (01:44 -0600)
urxvt perl extensions finalized,  font size added
edited install.sh for better filename compatibility
URxvtRoot tail log turnover fixed (-f to -F)
updated tint2 config to latest tint2 version
volumeicon horizontal slider

.gitmodules
base/.Xresources
base/.xinitrc
base/.zshenv
install.sh
urxvt-ext/urxvt-font-size [new submodule]
xdg/tint2/tint2rc
xdg/volumeicon/volumeicon

index bc2ddca6e77ecf8cee29ce192fbcea2a76cc82e6..22719d89fce18f909dcde42977129c3c38e333c7 100644 (file)
@@ -13,3 +13,6 @@
 [submodule "base/.vim/pack/repeat.vim/start/vim-repeat"]
        path = base/.vim/pack/repeat.vim/start/vim-repeat
        url = https://github.com/tpope/vim-repeat
+[submodule "urxvt-ext/urxvt-font-size"]
+       path = urxvt-ext/urxvt-font-size
+       url = https://github.com/majutsushi/urxvt-font-size
index c72d6f3465dca74a59199c07ebd5dbc68a254ece..7bccb528acc43e0993f94f7d2edc2dfe4d34273e 100644 (file)
@@ -65,8 +65,8 @@ Xft.rgba:                 none
 
 ! URxvt
 URxvt.termName:           rxvt-256color
-URxvt.perl-ext:           matcher
-URxvt.perl-ext-common:
+URxvt.perl-ext:
+URxvt.perl-ext-common:    searchable-scrollback,confirm-paste,matcher,font-size
 
 URxvt.depth:              32
 URxvt.background:         rgba:0000/0a00/0d00/d000
@@ -81,10 +81,11 @@ URxvt.visualBell:         true
 
 URxvt.url-launcher:       /usr/local/bin/xdg-open
 URxvt.matcher.button:     1
+URxvt.matcher.pattern.0:  \\w+:\\/\*[\\w\\-][\\w\\-\\.]*\\.\\w+(?::\\d)?(?:\\/[\\w\\-\\.\\/?&@#%_]*)?
 URxvt.matcher.rend.0:     Uline Bold fg6
-URxvt.matcher.pattern.0:  \\bwww\\.[\\w-]+\\.[\\w./?&@#-]*[\\w/-]
-URxvt.matcher.pattern.1:  \\B(/\\S+?):(\\d+)(?=:|$)
-URxvt.matcher.launcher.1: vim +$2 $1
+! URxvt.matcher.pattern.1:  \\s(/\\S+?):(\\d+)(?=:|$)
+! URxvt.matcher.rend.1:     Uline fg3
+URxvt.matcher.launcher.1: urxvtc -e vim +$2 $1
 URxvt.keysym.M-o:         matcher:last
 URxvt.keysym.M-u:         matcher:list
 
index 5bda964a54b23fbc6b72fc7b6ca4d754cb4fd971..3b41f3dec73344cb2de6f150b0e7f4b26909613d 100755 (executable)
@@ -30,7 +30,7 @@ xset dpms 0 0 600
 
 # root terminal
 urxvt -name URxvtBG -override-redirect -geometry x5+0-0 \
-      -e tail -f /var/log/messages &
+      -e tail -F /var/log/messages &
 xdotool search --limit 1 --sync --classname URxvtBG windowsize -usehints 100% 6
 
 # tray icons
index 8297e11cb1f2477739e95802eeccde66ec3646da..e237b0e29f04f3d830d361f3b2dfd45637d606de 100644 (file)
@@ -10,5 +10,3 @@ export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46
 export GREP_OPTIONS=--color=auto
 
 export PYTHONSTARTUP=~/.pythonrc
-
-export PUUSH_API_KEY=159C54A56C88394136BA1ACB6A9D8F80
index 4ced505139eb124b152e5c1e7c872dd6f83b8a32..e7a959be15befaa0cf0f7cbada6d9cdab6c1cc70 100755 (executable)
@@ -3,11 +3,27 @@
 #fix permissions from git (should probably move this to git hook)
 chmod go= base/.zshenv base/.Xresources
 
-for x in `find "$PWD/base" -mindepth 1 -maxdepth 1`; do
-       ln -vwis "$x" "$HOME/`basename $x`"
+if [ 0 -eq 1 ]; then
+       alias mkdir="echo mkdir"
+       alias ln="echo ln"
+       alias rm="echo rm"
+       alias cap_mkdb="echo cap_mkdb"
+       alias unlink="echo unlink"
+fi
+
+l() {
+       [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "$x" "$1"
+}
+
+find "$PWD/base" -depth 1 | while read -r x; do
+       l "$HOME/`basename "$x"`"
+done
+find "$PWD/xdg" -depth 1 | while read -r x; do
+       l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
 done
-for x in `find "$PWD/xdg" -mindepth 1 -maxdepth 1`; do
-       ln -vwis "$x" "${XDG_CONFIG_HOME:-$HOME/.config}/`basename $x`"
+mkdir -p "$HOME/.urxvt/ext"
+find "$PWD/urxvt-ext" -type f -perm -ugo=x -mindepth 1 -maxdepth 2 | while read -r x; do
+       l "$HOME/.urxvt/ext/`basename $x`"
 done
 touch "$HOME/.hushlogin"
 
diff --git a/urxvt-ext/urxvt-font-size b/urxvt-ext/urxvt-font-size
new file mode 160000 (submodule)
index 0000000..0984499
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 0984499379e420de651dcfeedfbb7938867c44f8
index 3c60a85c87783b2aee1a587d8e5c55769e4d50a2..30491397f92142cbe75756261df4df9046f7f27f 100644 (file)
@@ -1,4 +1,4 @@
-#---- Generated by tint2conf 30a7 ----
+#---- Generated by tint2conf 573e ----
 # See https://gitlab.com/o9000/tint2/wikis/Configure for 
 # full documentation of the configuration options.
 #-------------------------------------
@@ -61,7 +61,6 @@ panel_dock = 1
 panel_position = top center horizontal
 panel_layer = top
 panel_monitor = all
-primary_monitor_first = 0
 panel_shrink = 0
 autohide = 0
 autohide_show_timeout = 0
@@ -85,6 +84,7 @@ taskbar_active_background_id = 0
 taskbar_name = 1
 taskbar_hide_inactive_tasks = 0
 taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
 taskbar_always_show_all_desktop_tasks = 0
 taskbar_name_padding = 4 0
 taskbar_name_background_id = 1
@@ -146,13 +146,13 @@ launcher_tooltip = 1
 #-------------------------------------
 # Clock
 time1_format = %H:%M:%S
-time2_format = %a/%b %d/%m/%Y
+time2_format = %a %d/%m/%Y
 time1_font = Dina 8
 time1_timezone = 
 time2_timezone = 
 time2_font = Dina 6
 clock_font_color = #93a1a1 100
-clock_padding = 4 0
+clock_padding = 6 0
 clock_background_id = 0
 clock_tooltip = 
 clock_tooltip_timezone = 
@@ -167,9 +167,12 @@ clock_dwheel_command =
 battery_tooltip = 1
 battery_low_status = 5
 battery_low_cmd = notify-send -u critical "Battery low"
+battery_full_cmd = 
 bat1_font = Dina 8
 bat2_font = Dina 6
 battery_font_color = #93a1a1 100
+bat1_format = 
+bat2_format = 
 battery_padding = 0 0
 battery_background_id = 0
 battery_hide = 101
index f3bf5b10bebacdd789cd7d17fd89c888acded01b..812f5b023ff767e939c120336b4ec4432130b3a4 100644 (file)
@@ -2,7 +2,7 @@
 stepsize=5
 lmb_slider=true
 mmb_mute=true
-use_horizontal_slider=false
+use_horizontal_slider=true
 show_sound_level=true
 use_transparent_background=false
 onclick=~/bin/xmixer
This page took 0.045139 seconds and 4 git commands to generate.