diff options
author | katherine <shmibs@shmibbles.me> | 2018-09-27 22:17:49 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2018-09-27 22:17:49 -0700 |
commit | 85f251bf674dfd93f5f47f0654755f58327c1697 (patch) | |
tree | 67dcab1c824349b24943bf5e47ab57507afa195e | |
parent | 55b93604b74bb7de31c7dcecda5430c3f0c8ddfc (diff) | |
download | dotfiles-85f251bf674dfd93f5f47f0654755f58327c1697.tar.gz |
remove userchrome gen
useless now that using no-gui with tridactyl
(which is really disappointing, by the way, but no qutebrowser just
yet...
-rwxr-xr-x | .config/herbstluftwm/autostart | 14 | ||||
-rw-r--r-- | .config/init/gen/userChrome.sh | 87 |
2 files changed, 7 insertions, 94 deletions
diff --git a/.config/herbstluftwm/autostart b/.config/herbstluftwm/autostart index 4106644..f69db5a 100755 --- a/.config/herbstluftwm/autostart +++ b/.config/herbstluftwm/autostart @@ -216,10 +216,10 @@ for monitor in $(hc list_monitors | cut -d: -f1) ; do done # run dunst with theme colours -pkill dunst -dunst -lb $bar_bg -nb $bar_bg -cb $bg_focus \ - -lf $bar_fg -nf $bar_fg -cf $fg_focus \ - -frame_color $bg_focus -geom "0x3-4+$(($bheight + 4))" \ - -fn "$mfont $mfont_size,$jfont $jfont_size,$cfont $cfont_size,$efont $efont_size,$bkfont $bkfont_size" \ - -max_icon_size 0 - +# pkill dunst +# dunst -lb $bar_bg -nb $bar_bg -cb $bg_focus \ +# -lf $bar_fg -nf $bar_fg -cf $fg_focus \ +# -frame_color $bg_focus -geom "0x3-4+$(($bheight + 4))" \ +# -fn "$mfont $mfont_size,$jfont $jfont_size,$cfont $cfont_size,$efont $efont_size,$bkfont $bkfont_size" \ +# -max_icon_size 0 +# diff --git a/.config/init/gen/userChrome.sh b/.config/init/gen/userChrome.sh deleted file mode 100644 index 44fb6a9..0000000 --- a/.config/init/gen/userChrome.sh +++ /dev/null @@ -1,87 +0,0 @@ -echo "\ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -@-moz-document url-prefix(about:blank) {*{background-color:${bg_normal};}} - -#TabsToolbar:not(:-moz-lwtheme)::after {display: none;} -/* Remove the following line if you want the text color of unselected tabs to be black (Firefox default) */ -#TabsToolbar .tabbrowser-tab:not([selected]) {color: rgba(255,255,255,0.9);} - -#TabsToolbar { - background: rgb(50,50,50) !important; - margin-bottom: 0 !important; -} - -#TabsToolbar .tabbrowser-tabs { - min-height: ${bheight}px !important; - margin-top: 0px !important; - margin-bottom: 0px !important; - margin-left: -15px !important; - margin-right: -15px !important; -} - -#tabbrowser-tabs tab .tab-close-button { - display: none !important; -} - -.tabbrowser-tab:not([pinned]) .tab-icon-image { - display: none !important; -} - - -#TabsToolbar .tabbrowser-tab { - -moz-border-top-colors: none !important; - -moz-border-left-colors: none !important; - -moz-border-right-colors: none !important; - -moz-border-bottom-colors: none !important; - padding-top: 1px !important; - padding-right: 0 !important; - border-radius: 0px !important; - background: ${bg_normal} !important; - background-clip: padding-box !important; - margin-left: 0px !important; - color: ${fg_normal} !important; - font-family: '${bfont}' !important; - min-height: ${bheight}px !important; -} - -#TabsToolbar .tabs-newtab-button { - display: none !important; -} - -#TabsToolbar .tabbrowser-tab[selected] { - color: ${fg_focus} !important; - background: ${bg_focus} !important; - background-clip: padding-box !important; -} - -#TabsToolbar .tab-background { - margin: 0 !important; - background: transparent !important; -} - -#TabsToolbar .tab-background-start, -#TabsToolbar .tab-background-end { - display: none !important; -} - -#TabsToolbar .tab-background-middle { - margin: -4px -2px !important; - background: transparent !important; -} - -#TabsToolbar .tabbrowser-tab:after, -#TabsToolbar .tabbrowser-tab:before { - display: none !important; -} - -#TabsToolbar .tabs-newtab-button { - display: none !important; -} - -.scrollbutton-up, .scrollbutton-down, #alltabs-button { - display: none !important; -} - -" > /tmp/userChrome.css - |