config update

This commit is contained in:
Gregor Feierabend 2021-07-04 19:45:18 +02:00
parent 8ac3a2d12f
commit eec5ba2fff
8 changed files with 83 additions and 7 deletions

View File

@ -1,4 +1,4 @@
shadow-opacity = 0.8;
shadow-opacity = 1;
shadow = true;
shadow-radius = 0;
shadow-offset-x = -2;

View File

@ -46,7 +46,7 @@ set color_win_title_attr=default
set color_win_title_bg=default
set color_win_title_fg=white
set confirm_run=true
set continue=true
set continue=false
set continue_album=true
set device=/dev/cdrom
set display_artist_sort_name=false
@ -92,7 +92,7 @@ set mpris=false
set output_plugin=pulse
set passwd=
set pl_sort=
set play_library=false
set play_library=true
set play_sorted=false
set repeat=true
set repeat_current=false

View File

@ -10,8 +10,8 @@
#color=#A4C2F4
[notifications]
full_text=available
command=~/.scripts/togglenotify.sh
interval=3600
color=#91E78B
# exchange rate(s)

View File

@ -170,7 +170,7 @@ command! reload :write | restart
" program.
" Pdf
filextype *.pdf zathura %c %i &, apvlv %c, xpdf %c
filextype *.pdf qpdfview %f &> /dev/null &, zathura %c %i &, apvlv %c, xpdf %c
fileviewer *.pdf pdftotext -nopgbrk %c -
" Xournal

View File

@ -1,4 +1,5 @@
#!/bin/zsh
emulator -accel on -avd thePhone -gpu host -camera-back webcam1 -camera-front webcam1 -delay-adb -no-boot-anim -no-snapshot-load
#emulator -accel on -avd thePhone -gpu host -camera-back webcam1 -camera-front webcam1 -delay-adb -no-boot-anim -no-snapshot-load
emulator -accel on -avd thePhone -gpu host -camera-back webcam1 -camera-front webcam1 -delay-adb -no-snapshot-load
#emulator -accel on -avd thePhone -gpu host -camera-back webcam1 -camera-front webcam1 -delay-adb -no-boot-anim -no-window
adb kill-server

View File

@ -6,6 +6,7 @@ export PATH=$ANDROID_SDK/emulator:$ANDROID_SDK/tools:$PATH
#emulator -accel on -avd thePhone -gpu host -delay-adb -no-boot-anim -no-window -no-snapshot-load -detect-image-hang -use-system-libs -cores 4
#emulator -accel on -avd thePhone -gpu host -delay-adb -no-boot-anim -no-window
emulator -accel on -avd thePhone -gpu host -no-boot-anim -no-window -no-snapshot-load
#emulator -accel on -avd thePhone -gpu host -no-boot-anim -no-window -no-snapshot-load
emulator -accel on -avd thePhone -gpu host -no-boot-anim -no-audio -no-skin -no-window -cores 4 -no-snapshot-load
adb kill-server

18
userChrome.css Normal file
View File

@ -0,0 +1,18 @@
:root:not([customizing]) #navigator-toolbox:not(:hover):not(:focus-within) #TabsToolbar {
visibility: collapse;
}
:root:not([customizing]) #navigator-toolbox:not(:hover):not(:focus-within) {
max-height: 1px;
min-height: calc(0px);
overflow: hidden;
}
tabs {
counter-reset: tab-counter;
}
.tab-label::before {
counter-increment: tab-counter;
content: counter(tab-counter) " - ";
}

56
userChrome2.css Normal file
View File

@ -0,0 +1,56 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/*
* From https://gist.github.com/BenoitAverty/af633ee20e27f48f9ba7178451432206
*/
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
min-height: 0 !important;
}
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"] {
visibility: collapse;
}
#tabbrowser-tabs .tabs-newtab-button {
visibility: collapse !important;
}
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox main-window[privatebrowsingmode="temporary"]{
min-height: var(--tab-min-height)
}
#tabbrowser-tabs tab {
min-height: var(--tab-min-height)
}
/*
* From https://support.mozilla.org/en-US/questions/1185426
*/
#nav-bar {
-moz-box-ordinal-group: 1 !important;
border-top-width: 0 !important;
}
#PersonalToolbar {
-moz-box-ordinal-group: 2 !important;
}
#TabsToolbar {
-moz-box-ordinal-group: 3 !important;
}
/*
* Based on firefox own behavior while in fullscreen
*/
#navigator-toolbox {
margin-top: -60px; /* has to be adjusted depending on density */
transition: margin-top 0.1s;
}
#navigator-toolbox:hover, #navigator-toolbox:focus-within {
margin-top: 0px;
transition: margin-top 0.1s;
}