6 Commits

Author SHA1 Message Date
  Alois Mahdal 5318796178 Remove invalid setting 4 years ago
  Alois Mahdal 3ae2694a7f Switch to duckduckgo for a default quick query 4 years ago
  Alois Mahdal 04f9bbbc21 Move GTK settings to non-git storage 4 years ago
  Alois Mahdal df19876184 Add netvorovo remote storage to i3bar 4 years ago
  Alois Mahdal 8a2b5d1af1 Make background a bit less prominent 4 years ago
  Alois Mahdal 6ba46c6d14 Add xcxx(), to use command to transform clipboard (xvxx style) 4 years ago

+ 12
- 0
dotfiles/bash/main.bashrc View File

@@ -401,6 +401,18 @@ xvxx() {
401 401
     xop o | vipe | xop ii
402 402
 }
403 403
 
404
+xcxx() {
405
+    #
406
+    # Filter text in primary clipboard using command $@ and save it to C-C clipboard
407
+    #
408
+    # Similar to xvvx() but instead of interactive editing, provided filter
409
+    # command is run.
410
+    #
411
+    local cmd=("$@")
412
+    xop o | "${cmd[@]}" | xop ii
413
+    return "${PIPESTATUS[1]}"
414
+}
415
+
404 416
 vx() {
405 417
     #
406 418
     # Edit stdin and save it to primary clipboard

+ 1
- 1
dotfiles/config/Xlib/global.Xdefaults View File

@@ -9,7 +9,7 @@ URxvt.tabbed.tabbar-fg:     4
9 9
 !## transparency
10 10
 URxvt.inheritPixmap:        true
11 11
 !URxvt.tintColor:            red
12
-URxvt.shading:              25
12
+URxvt.shading:              20
13 13
 URxvt.depth:                32
14 14
 URxvt.fading:               30
15 15
 

+ 0
- 7
dotfiles/config/gtk-2.0/gtkfilechooser.ini View File

@@ -1,7 +0,0 @@
1
-[Filechooser Settings]
2
-StartupMode=cwd
3
-LocationMode=filename-entry
4
-ShowHidden=false
5
-ShowSizeColumn=true
6
-SortColumn=name
7
-SortOrder=ascending

+ 0
- 6
dotfiles/config/gtk-3.0/gtk.css View File

@@ -1,6 +0,0 @@
1
-.scrollbar {
2
-  -GtkScrollbar-has-backward-stepper: true;
3
-  -GtkScrollbar-has-forward-stepper: true;
4
-  -GtkRange-slider-width: 20;
5
-  -GtkRange-stepper-size: 20;
6
-}

+ 0
- 18
dotfiles/config/gtk-3.0/settings.ini View File

@@ -1,18 +0,0 @@
1
-[Settings]
2
-gtk-recent-files-enabled=0
3
-gtk-primary-button-warps-slider=false
4
-gtk-toolbar-icon-size=GTK_ICON_SIZE_SMALL_TOOLBAR
5
-#startup-mode=cwd
6
-gtk-theme-name=Mist
7
-gtk-icon-theme-name=Adwaita
8
-gtk-font-name=Sans 10
9
-gtk-cursor-theme-name=Adwaita
10
-gtk-cursor-theme-size=0
11
-gtk-toolbar-style=GTK_TOOLBAR_ICONS
12
-gtk-button-images=0
13
-gtk-menu-images=1
14
-gtk-enable-event-sounds=1
15
-gtk-enable-input-feedback-sounds=1
16
-gtk-xft-antialias=1
17
-gtk-xft-hinting=1
18
-gtk-xft-hintstyle=hintfull

+ 7
- 0
dotfiles/config/i3status/config View File

@@ -16,6 +16,7 @@ order += "battery 0"
16 16
 order += "battery 1"
17 17
 order += "load"
18 18
 order += "cpu_usage"
19
+order += "disk /home/netvor/mnt/netvorovo"
19 20
 order += "disk /home"
20 21
 order += "volume master"
21 22
 order += "tztime local"
@@ -52,6 +53,12 @@ tztime local {
52 53
     format = "(w%V,d%u) %Y-%m-%d %H:%M"
53 54
 }
54 55
 
56
+disk "/home/netvor/mnt/netvorovo" {
57
+    format = "n:%avail"
58
+    threshold_type = "gbytes_avail"
59
+    low_threshold = 2
60
+}
61
+
55 62
 disk "/home" {
56 63
     format = "~:%avail"
57 64
     threshold_type = "gbytes_avail"

+ 0
- 1
dotfiles/config/xfce4/terminal/terminalrc View File

@@ -16,7 +16,6 @@ MiscTabCloseButtons=TRUE
16 16
 MiscTabCloseMiddleClick=TRUE
17 17
 MiscTabPosition=GTK_POS_TOP
18 18
 MiscHighlightUrls=TRUE
19
-BackgroundMode=TERMINAL_BACKGROUND_IMAGE
20 19
 BackgroundDarkness=0.950000
21 20
 TitleMode=TERMINAL_TITLE_REPLACE
22 21
 MiscBellUrgent=TRUE

+ 1
- 1
dotfiles/i3/config View File

@@ -383,7 +383,7 @@ bindsym $mod+Shift+b        exec "$spn bmo wish -c"
383 383
 bindsym $mod+Shift+c        exec "$spn bmo wish -c -B"
384 384
 bindsym $mod+i              exec "$spn bmo menu uris"
385 385
 bindsym $mod+Shift+i        exec "$spn bmo menu www_hist"
386
-bindsym $mod+q              exec "$spn bmo wish -c -q g"
386
+bindsym $mod+q              exec "$spn bmo wish -c -q ddg"
387 387
 bindsym $mod+Shift+q        exec "$spn bmo wish -c -Q"
388 388
 bindsym $mod+t              exec "acclive"
389 389