parent
d6c23ea057
commit
dbfbbd2623
39 changed files with 1416 additions and 18 deletions
@ -1 +1 @@ |
||||
Subproject commit 9a24bc1ededd18e92979250fb81e7b5463f12388 |
||||
Subproject commit d474bfcbc631f79aa2f2b070e1fac4557762caad |
@ -1 +1 @@ |
||||
Subproject commit 2f2c7792a88bcf014f62ce8639d458b6e7c7e026 |
||||
Subproject commit 249665b044bf379afdca63c232e5abad9d2656cb |
@ -0,0 +1,19 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
BOOKMARKS="$HOME/.surf/bookmarks/" |
||||
|
||||
function formatFile(){ |
||||
keywords="$(grep -E '^keywords:' "$1" | sed 's/^keywords://')" |
||||
echo "$1 : $keywords" | sed 's/ / /g' |
||||
} |
||||
export -f formatFile |
||||
|
||||
if [ -d "$BOOKMARKS" ]; then |
||||
cd "$BOOKMARKS" |
||||
selection=$(find . -type f -exec bash -c 'formatFile "{}"' \; | dmenu -l 20 | sed 's/ : .*//') |
||||
if [ -f "$selection" ]; then |
||||
head -n 1 "$selection" |
||||
fi |
||||
else |
||||
echo "$BOOKMARKS doesn't exist" |
||||
fi |
@ -0,0 +1,12 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
man -k . |\ |
||||
awk '{ print $1 " " $2 }' |\ |
||||
rofi -dmenu -p man -i -matching regex |\ |
||||
awk '{ print $2 " " $1 }' |\ |
||||
tr -d '()' |\ |
||||
xargs man -t |\ |
||||
ps2pdf - - |\ |
||||
zathura - |
||||
|
||||
|
@ -0,0 +1,10 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Offline version of aw in markdown |
||||
|
||||
AW_FOLDER="$HOME/GitRepos/arch-wiki-md-repo/wiki/_content/english/" |
||||
|
||||
cd "$AW_FOLDER" |
||||
selection=$(find . -name \*.md | rofi -dmenu -i -p "Page") |
||||
compiler "$selection" |
||||
opout "$selection" |
@ -0,0 +1,10 @@ |
||||
#!/bin/sh |
||||
while name=$(xsel -o | dmenu -p 'Find File') || exit |
||||
do |
||||
[[ $name ]] || exit |
||||
list=$(sudo locate -A -e -i $name) |
||||
[[ $list ]] || continue |
||||
file=$(echo -e "$list" | dmenu -l 12 -p 'Open') || exit |
||||
echo -n "$file" | xsel -b -i |
||||
xdg-open "$file" |
||||
done |
@ -0,0 +1,5 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" |
||||
|
||||
cat "$SCRIPTPATH/ports-common.csv" "$SCRIPTPATH/ports-uncommon.csv" | tr ',' '\t' | rofi -dmenu -i |
@ -0,0 +1,7 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
|
||||
FOLDER="$HOME/.dotfiles/bin/.bin/screenlayouts/" |
||||
script=$(ls "$FOLDER" | sed 's/\.sh$//' | rofi -dmenu -p "Layout" ) |
||||
"${FOLDER}${script}.sh" |
||||
|
@ -0,0 +1,27 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
if [[ "$1" = "surf-download" ]]; then |
||||
echo "Doing surf" |
||||
shift |
||||
# I am shifting so that the vaiable numbers here are the same as in surf |
||||
useragent="$1" |
||||
cookiefile="$2" |
||||
referer="$3" |
||||
url="$4" |
||||
fi |
||||
|
||||
path="~/Downloads/" |
||||
project=$(project current --path) |
||||
if [ -n "$project" ]; then |
||||
path="$project/Downloads/" |
||||
fi |
||||
|
||||
mkcd -p "$path" |
||||
cd "$path" |
||||
|
||||
echo "$useragent" |
||||
echo "$cookiefile" |
||||
echo "$referer" |
||||
echo "$url" |
||||
|
||||
curl -g -L -J -O -A "$useragent" -b "$cookiefile" -c "$cookiefile" -e "$referer" "$url" |
@ -0,0 +1,8 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
cat | grep -v 'host down' |\ |
||||
grep -v Increa |\ |
||||
grep -v Ignoring |\ |
||||
grep -v '^#' |\ |
||||
awk -v RS="\n\n" -v ORS="\n\n" '{if ($0 ~ "'"$1"'" ) print $0}' |
||||
|
@ -0,0 +1,10 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Offline version of aw in markdown |
||||
|
||||
AW_FOLDER="$HOME/GitRepos/arch-wiki-md-repo/wiki/_content/english/" |
||||
|
||||
cd "$AW_FOLDER" |
||||
selection=$(find . -name \*.md | rofi -dmenu -i -p "Page") |
||||
compiler "$selection" |
||||
opout "$selection" |
@ -0,0 +1,187 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# This script sets things based on my current project and will set the symlink ~/Projects/current to the correct folder |
||||
|
||||
PROJECTS_PATH="$HOME/Projects" |
||||
SYMLINC="$PROJECTS_PATH/current" |
||||
|
||||
function print_help(){ |
||||
echo "Manages projects" |
||||
echo "" |
||||
echo -e "Usage: $0 <command> [<args>]" |
||||
echo "" |
||||
echo -e "Commands" |
||||
echo -e "list\t\t\tLists The available projects" |
||||
echo -e "switch\t\t\tSwitches the current project" |
||||
echo -e "\t--auto\t\tAutomatically deduce the project based on current working directory" |
||||
echo -e "\t--fzf\t\tUses fzf to choose a project" |
||||
echo -e "\t--dmenu\t\tUses dmenu to choose a project" |
||||
echo -e "\t--rofi\t\tUses rofi to choose a project" |
||||
echo -e "\t--unset\t\tUnsets the project" |
||||
echo -e "\t<project>\tSets the project" |
||||
echo -e "current\t\t\tPrints the current project" |
||||
echo -e "\t--notify\t\tUses notify send to print current project" |
||||
echo -e "\t--path\t\tPrints the full path rather than the name" |
||||
exit 0 |
||||
} |
||||
|
||||
function list_projects(){ |
||||
if [[ "$1" == "--options" ]]; then |
||||
if [ -L "$SYMLINC" ]; then |
||||
echo "--unset" |
||||
fi |
||||
echo "--new" |
||||
fi |
||||
find "$PROJECTS_PATH/" -maxdepth 1 -mindepth 1 -type d | xargs -L 1 basename |
||||
} |
||||
|
||||
function switch(){ |
||||
local switchto="$1" |
||||
if [[ "$1" == "--auto" ]]; then |
||||
if echo "$PWD" | grep -q "$PROJECTS_PATH"; then |
||||
switchto=$( echo "$PWD" | sed "s#$PROJECTS_PATH/##") |
||||
switchto="${switchto%/*}" |
||||
if [[ "$PWD" == "$PROJECTS_PATH" ]]; then |
||||
switchto="--unset" |
||||
fi |
||||
else |
||||
switchto="--unset" |
||||
fi |
||||
elif [[ "$1" == "--fzf" ]]; then |
||||
switchto=$(list_projects --options | fzf) |
||||
elif [[ "$1" == "--dmenu" ]]; then |
||||
switchto=$(list_projects --options | dmenu -i ) |
||||
elif [[ "$1" == "--rofi" ]]; then |
||||
switchto=$(list_projects --options | rofi -dmenu -i ) |
||||
elif [[ "$1" == "--unset" ]]; then |
||||
if [ -L "$SYMLINC" ]; then |
||||
rm "$SYMLINC" 2> /dev/null |
||||
# See note about SIGWINCH below |
||||
pkill -u $USER -SIGWINCH zsh |
||||
fi |
||||
exit 0 |
||||
fi |
||||
# If $switchto is --unset, it has just been selected from one of the menus |
||||
# Re-run switch with the --unset flag |
||||
if [[ "$switchto" == "--unset" ]]; then |
||||
switch --unset |
||||
exit 0 |
||||
fi |
||||
if [[ "$switchto" == "--new" ]]; then |
||||
new_project "$1" |
||||
exit 0 |
||||
fi |
||||
switchto="$PROJECTS_PATH/$switchto" |
||||
# This sends the SIGWINCH signal to all zsh processes |
||||
# This tells zsh that the window has been resized. |
||||
# Althouph we are not resizing the window, it causes zsh to re-draw the prompt |
||||
pkill -u $USER -SIGWINCH zsh |
||||
if [ -d "$switchto" ]; then |
||||
if [ -L "$SYMLINC" ]; then |
||||
rm "$SYMLINC" 2> /dev/null |
||||
fi |
||||
ln -s "$switchto" "$SYMLINC" |
||||
else |
||||
echo "No such directory $switchto" |
||||
exit 1 |
||||
fi |
||||
} |
||||
|
||||
function get_current(){ |
||||
if [ -L "$SYMLINC" ]; then |
||||
local current=$(readlink "$SYMLINC") |
||||
if [[ "$1" != "--path" ]]; then |
||||
if [ -f "$current"/index.yaml ]; then |
||||
current=$(cat "$current/index.yaml" | yq -r '.name') |
||||
else |
||||
current=$(echo "$current" | xargs -L 1 basename) |
||||
fi |
||||
fi |
||||
if [[ "$1" == "--notify" ]]; then |
||||
notify-send "Current Project" "$current" |
||||
else |
||||
echo "$current" |
||||
fi |
||||
|
||||
else |
||||
if [[ "$1" == "--notify" ]]; then |
||||
notify-send "Current Project" "not set" |
||||
else |
||||
echo "" |
||||
fi |
||||
fi |
||||
} |
||||
|
||||
function new_project(){ |
||||
local name="$1" |
||||
local default_dirs=( bin screenshots Downloads ) |
||||
if [ ! -n "$name" ]; then |
||||
echo -n "Project name: " |
||||
read name < /dev/tty |
||||
elif [[ "$name" == "--rofi" ]]; then |
||||
name=$(rofi -dmenu -l 0 -p "Project name" ) |
||||
elif [[ "$name" == "--dmenu" ]]; then |
||||
name=$(echo "" | dmenu -l 0 -p "Project name: " ) |
||||
fi |
||||
# If name still empty, exit |
||||
if [ ! -n "$name" ]; then |
||||
exit 1 |
||||
fi |
||||
mkdir "$PROJECTS_PATH/$name" |
||||
# Make all the directories |
||||
for dir in "${default_dirs[@]}"; do |
||||
mkdir "$PROJECTS_PATH/$name/$dir" |
||||
done |
||||
switch "$name" |
||||
} |
||||
|
||||
function copyto(){ |
||||
local current="$(get_current --path)" |
||||
if [ -n "$current" ]; then |
||||
local destination="$current/" |
||||
if [[ "$1" == "--bin" ]]; then |
||||
destination="$current/bin/" |
||||
shift |
||||
fi |
||||
mkdir -p "$destination" |
||||
cp -r "$@" "$destination" |
||||
fi |
||||
} |
||||
|
||||
|
||||
|
||||
if [ -n "$1" ] ; then |
||||
case "$1" in |
||||
-h|--help) |
||||
print_help |
||||
exit 0 |
||||
;; |
||||
list) |
||||
list_projects |
||||
exit 0 |
||||
;; |
||||
switch) |
||||
switch "$2" |
||||
exit 0 |
||||
;; |
||||
current) |
||||
get_current "$2" |
||||
exit 0 |
||||
;; |
||||
new) |
||||
new_project "$2" |
||||
exit 0 |
||||
;; |
||||
copy) |
||||
shift |
||||
copyto "$@" |
||||
exit 0 |
||||
;; |
||||
*) |
||||
echo "Unknown command $1" |
||||
print_help |
||||
exit 1 |
||||
;; |
||||
esac |
||||
fi |
||||
|
@ -0,0 +1,2 @@ |
||||
#!/bin/sh |
||||
xrandr --output eDP-1 --primary --mode 1920x1080 --pos 1920x0 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output HDMI-2 --mode 1920x1080 --pos 0x0 --rotate normal |
@ -0,0 +1,2 @@ |
||||
#!/bin/sh |
||||
xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output HDMI-2 --off |
@ -0,0 +1,2 @@ |
||||
#!/bin/sh |
||||
xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output HDMI-2 --mode 1920x1080 --pos 0x0 --rotate normal |
@ -1,6 +1,6 @@ |
||||
#!/usr/bin/bash |
||||
|
||||
rngback -fg "#404552" -bg "#5294e2" 3840 2160 30 15 -o ~/background.gif |
||||
rngback -fg "#3c3836" -bg "#282828" 3840 2160 30 15 -o ~/background.gif |
||||
|
||||
feh --bg-fill ~/background.gif |
||||
|
||||
|
@ -0,0 +1,10 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# This is a qutebrowser user script that is intendet to be run from an icon project page |
||||
# It will put a vector version of the image on the clipboard, ready to be pasted into something like inkscape |
||||
|
||||
cat "$QUTE_HTML" | # This is the qutebrowser file repersenting the current page's html |
||||
hq '.iconPreview' attr style | # This gets the style attribute from the preview element |
||||
cut -d '"' -f 2 | cut -d ',' -f 2 | # Gets the base 64 out that we want |
||||
base64 -d | # Decodes it |
||||
xclip -selection clipboard -target image/svg+xml -i # Puts it on the clipboard |
@ -0,0 +1,3 @@ |
||||
body, p, li, h1, h2, h3, h4, h5, h6, .article-content, .article-content p{ |
||||
font-family: "open-dyslexic"; |
||||
} |
@ -0,0 +1,327 @@ |
||||
@import "gruvbox-colours.less"; |
||||
@import "stylish.less"; |
||||
|
||||
|
||||
body{ |
||||
font-family: opendyslexic; |
||||
} |
||||
|
||||
code, pre, tt, .blob-code-inner{ |
||||
font-family: Iosevka; |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
|
||||
textarea{ |
||||
background-color: @gb-dm-bg0; |
||||
color: @gb-dm-fg0; |
||||
font-family: opendyslexic; |
||||
font-size: 20px; |
||||
} |
||||
|
||||
//.form-control, .form-select{ |
||||
// border-color: @gb-dm-bg0-hard; |
||||
// background-color: @gb-dm-bg0; |
||||
// color: @gb-dm-fg0; |
||||
// border-width: 2px; |
||||
//} |
||||
// |
||||
footer, .footer, .header-wrap{ |
||||
&, p, li, h1, h2, h3, h4, h5, h6{ |
||||
background-color: @gb-dm-bg0-hard; |
||||
} |
||||
} |
||||
// |
||||
//#content{ |
||||
// background-color: @gb-dm-bg0; |
||||
// &, p, li, h1, h2, h3, h4, h5, h6{ |
||||
// color: @gb-dm-fg0; |
||||
// } |
||||
//} |
||||
|
||||
|
||||
|
||||
/** |
||||
* Duck Duck Go |
||||
**/ |
||||
|
||||
.search-filters-wrap{ |
||||
&::before, &::after{ |
||||
content: none; |
||||
} |
||||
} |
||||
.highlight .result__a{ |
||||
&, &:visited,&:visited:hover,&:hover{ |
||||
color: @gb-dm-dark-purple; |
||||
} |
||||
} |
||||
//.result__a{ |
||||
// .a() |
||||
//} |
||||
.result__snippet{ |
||||
color: @gb-dm-fg0; |
||||
font-weight: 400; |
||||
b{ |
||||
color: @gb-dm-dark-orange; |
||||
font-weight: 700; |
||||
} |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Git Hub |
||||
**/ |
||||
|
||||
|
||||
.markdown-body{ |
||||
font-family: opendyslexic; |
||||
} |
||||
.repohead.experiment-repo-nav{ |
||||
background-color: @gb-dm-bg0-hard; |
||||
} |
||||
.discussion-timeline-actions, |
||||
.gh-header{ |
||||
background: none; |
||||
border: none; |
||||
} |
||||
|
||||
.comment-body{ |
||||
background-color: @gb-dm-bg0; |
||||
} |
||||
|
||||
.timeline-comment{ |
||||
background-color: @gb-dm-bg0; |
||||
border-color: @gb-dm-bg0-hard; |
||||
border-width: 2px; |
||||
} |
||||
|
||||
.timeline-comment-header{ |
||||
border-color: @gb-dm-bg0-hard; |
||||
&, p, li, h1, h2, h3, h4, h5, h6{ |
||||
background-color: @gb-dm-bg0-hard; |
||||
} |
||||
} |
||||
|
||||
.timeline-comment--caret:before{ |
||||
|
||||
} |
||||
|
||||
.TimelineItem-break{ |
||||
background: none; |
||||
border-top-color: @gb-dm-bg0-hard; |
||||
} |
||||
|
||||
.link-gray-dark{ |
||||
color: inherit !important; |
||||
} |
||||
|
||||
.TimelineItem:before{ |
||||
background-color: @gb-dm-bg0-hard; |
||||
} |
||||
|
||||
.timeline-comment-wrapper{ |
||||
border-color: @gb-dm-bg0-hard; |
||||
} |
||||
|
||||
.comment-reactions.has-reactions{ |
||||
border-color: @gb-dm-bg0-hard; |
||||
} |
||||
|
||||
.previewable-comment-form{ |
||||
.comment-form-head.tabnav{ |
||||
background: @gb-dm-bg0-hard; |
||||
} |
||||
} |
||||
|
||||
.drag-and-drop{ |
||||
background: @gb-dm-bg0-hard; |
||||
} |
||||
.input-contrast{ |
||||
&, &:focus{ |
||||
background-color: @gb-dm-bg0; |
||||
color: @gb-dm-fg0; |
||||
} |
||||
} |
||||
|
||||
.bg-gray-light{ |
||||
background-color: @gb-dm-bg0-hard !important; |
||||
color: @gb-dm-fg0; |
||||
} |
||||
|
||||
.full-width .archive-header, .full-width .comments-area, .full-width .image-navigation, .full-width .page-header, .full-width .page-content, .full-width .post-navigation, .full-width .site-content .entry-header, .full-width .site-content .entry-content, .full-width .site-content .entry-summary, .full-width .site-content footer.entry-meta{ |
||||
background-color: @gb-dm-bg0; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Slack |
||||
**/ |
||||
.p-workspace__top_nav{ |
||||
background-color: @gb-dm-bg0-hard !important; |
||||
*{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
} |
||||
.p-channel_sidebar{ |
||||
background-color: @gb-dm-dark-blue !important; |
||||
} |
||||
.p-classic_nav__team_header:hover{ |
||||
background-color: @gb-lm-light-blue !important; |
||||
} |
||||
.p-channel_sidebar__channel:hover, .p-channel_sidebar__link:hover, .p-channel_sidebar__close_container:hover{ |
||||
background-color: @gb-lm-light-blue !important; |
||||
} |
||||
.p-channel_sidebar__section_heading--selected, .p-channel_sidebar__channel--selected, .p-channel_sidebar__channel--selected:hover, .p-channel_sidebar__link--selected, .p-channel_sidebar__link--selected:hover, .p-channel_sidebar__close:focus{ |
||||
background-color: @gb-lm-light-blue !important; |
||||
} |
||||
.p-classic_nav__team_header{ |
||||
background-color: @gb-lm-light-blue !important; |
||||
} |
||||
.c-message_attachment,.c-message_attachment__author_name{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.c-icon_button.c-texty_input__button,.p-workspace__input .p-message_input_file_button{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.c-texty_input .ql-placeholder{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.p-message_pane .c-message_list.c-virtual_list--scrollbar>.c-scrollbar__hider:before, .p-message_pane .c-message_list:not(.c-virtual_list--scrollbar):before{ |
||||
background-color: @gb-dm-bg0-hard !important; |
||||
} |
||||
.p-workspace__input .p-message_input_field, |
||||
.p-threads_footer__input .p-message_input_field{ |
||||
background-color: @gb-dm-dark-blue !important; |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
|
||||
.c-message_list__day_divider__line{ |
||||
border-top: 1px solid @gb-dm-light-orange !important; |
||||
} |
||||
|
||||
.c-message_list__day_divider__label__pill{ |
||||
background: @gb-dm-light-orange !important; |
||||
} |
||||
|
||||
.c-menu{ |
||||
background-color: @gb-dm-bg0 !important; |
||||
color: @gb-dm-fg0 !important; |
||||
.c-menu_item__button, .c-menu_item__button:link, .c-menu_item__button:visited{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.c-menu_item--standalone:hover, .c-menu_item--standalone:hover:link, .c-menu_item--standalone:hover:visited, .c-menu_item__button--highlighted, .c-menu_item__button--highlighted:link, .c-menu_item__button--highlighted:visited, .no_touch a.c-menu_item__button--highlighted, .no_touch a.c-menu_item__button--highlighted:link, .no_touch a.c-menu_item__button--highlighted:visited{ |
||||
background-color: @gb-dm-dark-aqua !important; |
||||
} |
||||
} |
||||
|
||||
.CodeMirror-code{ |
||||
background-color: @gb-dm-bg0-hard !important; |
||||
font-family: Iosevka !important; |
||||
&>div:before{ |
||||
color: @gb-dm-fg0 !important; |
||||
border-right: 1px solid @gb-dm-fg0 !important; |
||||
} |
||||
} |
||||
|
||||
|
||||
.c-button--primary{ |
||||
background-color: @gb-dm-dark-aqua !important; |
||||
} |
||||
|
||||
.ql-editor blockquote, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6, .ql-editor ol, .ql-editor p, .ql-editor pre, .ql-editor ul{ |
||||
background-color: @gb-dm-dark-blue !important; |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.c-virtual_list__scroll_container{ |
||||
background-color: @gb-dm-bg0 !important; |
||||
color: @gb-dm-fg0 !important; |
||||
.c-message--hover{ |
||||
background-color: @gb-dm-bg0-hard !important; |
||||
} |
||||
.c-message__body{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.c-message__sender, .c-message__sender a, .c-message__sender .c-message__sender_link{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
} |
||||
.p-workspace__secondary_view{ |
||||
background-color: @gb-dm-bg0 !important; |
||||
border-left: 2px solid @gb-dm-bg0-hard !important; |
||||
.p-flexpane_header{ |
||||
background-color: @gb-dm-bg0-soft !important; |
||||
} |
||||
.c-icon_button--light, .c-icon_button--light.c-button-unstyled, .c-icon_button--light:link{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
.p-threads_flexpane__header_channel_name, .p-threads_flexpane__header_permalink:focus, .p-threads_flexpane__header_permalink:hover{ |
||||
color: @gb-dm-fg0 !important; |
||||
} |
||||
} |
||||
.c-message--focus-within:not(.c-message--highlight):not(.c-message--standalone):not(.c-message--pinned):not(.c-message--ephemeral):not(.c-message--custom_response):not(.c-message--starred):not(.c-message--sli_highlight), .c-message--hover:not(.c-message--highlight):not(.c-message--standalone):not(.c-message--pinned):not(.c-message--ephemeral):not(.c-message--custom_response):not(.c-message--starred):not(.c-message--sli_highlight), .c-message:hover:not(.c-message--highlight):not(.c-message--standalone):not(.c-message--pinned):not(.c-message--ephemeral):not(.c-message--custom_response):not(.c-message--starred):not(.c-message--sli_highlight){ |
||||
background-color: @gb-dm-bg0-hard !important; |
||||
} |
||||
|
||||
/** |
||||
Arch Wiki |
||||
**/ |
||||
#content pre, #content code, #content tt{ |
||||
background: @gb-dm-bg0-hard; |
||||
color: @gb-dm-fg0; |
||||
font-family: Iosevka; |
||||
} |
||||
|
||||
div.archwiki-template-box.archwiki-template-box-tip{ |
||||
background-color: @gb-dm-light-green; |
||||
border-color: @gb-dm-dark-green; |
||||
} |
||||
div.archwiki-template-box.archwiki-template-box-note{ |
||||
background-color: @gb-dm-light-blue; |
||||
border-color: @gb-dm-dark-blue; |
||||
} |
||||
div.archwiki-template-message{ |
||||
background-color: @gb-dm-light-aqua; |
||||
border-color: @gb-dm-dark-aqua; |
||||
} |
||||
.catlinks{ |
||||
background-color: @gb-dm-light-green; |
||||
border-color: @gb-dm-dark-green; |
||||
} |
||||
#toc, .toc, .mw-warning, .toccolours{ |
||||
background-color: @gb-dm-fg2; |
||||
border: 1px solid @gb-dm-fg4; |
||||
} |
||||
|
||||
/** |
||||
OWA |
||||
**/ |
||||
|
||||
table.lvw td.sc{ |
||||
background-color: @gb-dm-bg0-soft; |
||||
} |
||||
table.lvw th.chd{ |
||||
background-color: @gb-dm-fg0; |
||||
} |
||||
table.tbhd{ |
||||
background-color: @gb-dm-light-blue; |
||||
border-color: @gb-dm-dark-blue; |
||||
} |
||||
table.snt td.fld a{ |
||||
color: @gb-dm-fg0; |
||||
} |
||||
table.snt td.sl, table.sncts td.sl{ |
||||
a{ |
||||
color: @gb-dm-bg0; |
||||
} |
||||
} |
||||
|
||||
table.pnt td a.pn{ |
||||
background-color: @gb-dm-light-blue; |
||||
border-color: @gb-dm-dark-blue; |
||||
} |
||||
table.pnt td a.s, td.rsz{ |
||||
background-color: @gb-dm-dark-blue; |
||||
} |
||||
table.lvw td a{ |
||||
//.a(); |
||||
font-size: 1.3em; |
||||
} |
@ -0,0 +1,3 @@ |
||||
@import "gruvbox-colours.less"; |
||||
|
||||
|
@ -0,0 +1,139 @@ |
||||
// Dark Background |
||||
@gb-dm-bg0: #282828; |
||||
@gb-dm-bg0-hard: #1d2021; |
||||
@gb-dm-bg0-soft: #32302f; |
||||
@gb-dm-bg1: #3c3836; |
||||
@gb-dm-bg2: #504945; |
||||
@gb-dm-bg3: #665c54; |
||||
@gb-dm-bg4: #7c6f64; |
||||
// Dark Foreground |
||||
@gb-dm-fg0: #fbf1c7; |
||||
@gb-dm-fg1: #ebdbb2; |
||||
@gb-dm-fg2: #d5c4a1; |
||||
@gb-dm-fg3: #bdae93; |
||||
@gb-dm-fg4: #a89984; |
||||
// Dark Colors |
||||
@gb-dm-dark-red: #cc241d; |
||||
@gb-dm-dark-green: #98971a; |
||||
@gb-dm-dark-yellow: #d79921; |
||||
@gb-dm-dark-blue: #458588; |
||||
@gb-dm-dark-purple: #b16286; |
||||
@gb-dm-dark-aqua: #689d6a; |
||||
@gb-dm-dark-orange: #d65d0e; |
||||
@gb-dm-dark-gray: #928374; |
||||
@gb-dm-light-red: #fb4934; |
||||
@gb-dm-light-green: #b8bb26; |
||||
@gb-dm-light-yellow: #fabd2f; |
||||
@gb-dm-light-blue: #83a598; |
||||
@gb-dm-light-purple: #d3869b; |
||||
@gb-dm-light-aqua: #8ec07c; |
||||
@gb-dm-light-orange: #f38019; |
||||
@gb-dm-light-gray: #a89984; |
||||
|
||||
|
||||
|
||||
// Light Background |
||||
@gb-lm-bg0: #fbf1c7; |
||||
@gb-lm-bg0-hard: #f9f5d7; |
||||
@gb-lm-bg0-soft: #f2e5bc; |
||||
@gb-lm-bg1: #ebdbb2; |
||||
@gb-lm-bg2: #d5c4a1; |
||||
@gb-lm-bg3: #bdae93; |
||||
@gb-lm-bg4: #a89984; |
||||
|
||||
// Light Foreground |
||||
@gb-lm-fg0: #282828; |
||||
@gb-lm-fg1: #3c3836; |
||||
@gb-lm-fg2: #504945; |
||||
@gb-lm-fg3: #665c54; |
||||
@gb-lm-fg4: #7c6f64; |
||||
|
||||
// Light Colors |
||||
@gb-lm-dark-red: #cc241d; |
||||
@gb-lm-dark-green: #98971a; |
||||
@gb-lm-dark-yellow: #d79921; |
||||
@gb-lm-dark-blue: #458588; |
||||
@gb-lm-dark-purple: #b16286; |
||||
@gb-lm-dark-aqua: #689d6a; |
||||
@gb-lm-dark-orange: #d65d0e; |
||||
@gb-lm-dark-gray: #928374; |
||||
|
||||
@gb-lm-light-red: #9d0006; |
||||
@gb-lm-light-green: #79740e; |
||||
@gb-lm-light-yellow: #b57614; |
||||
@gb-lm-light-blue: #076678; |
||||
@gb-lm-light-purple: #8f3f71; |
||||
@gb-lm-light-aqua: #427b58; |
||||
@gb-lm-light-orange: #af3a03; |
||||
@gb-lm-light-gray: #7c6f64; |
||||
|
||||
|
||||
:root{ |
||||
--gb-dm-bg0: @gb-dm-bg0; |
||||
--gb-dm-bg0-hard: @gb-dm-bg0-hard; |
||||
--gb-dm-bg0-soft: @gb-dm-bg0-soft; |
||||
--gb-dm-bg1: @gb-dm-bg1; |
||||
--gb-dm-bg2: @gb-dm-bg2; |
||||
--gb-dm-bg3: @gb-dm-bg3; |
||||
--gb-dm-bg4: @gb-dm-bg4; |
||||
// Dark Foreground |
||||
--gb-dm-fg0: @gb-dm-fg0; |
||||
--gb-dm-fg1: @gb-dm-fg1; |
||||
--gb-dm-fg2: @gb-dm-fg2; |
||||
--gb-dm-fg3: @gb-dm-fg3; |
||||
--gb-dm-fg4: @gb-dm-fg4; |
||||
// Dark Colors |
||||
--gb-dm-dark-red: @gb-dm-dark-red; |
||||
--gb-dm-dark-green: @gb-dm-dark-green; |
||||
--gb-dm-dark-yellow: @gb-dm-dark-yellow; |
||||
--gb-dm-dark-blue: @gb-dm-dark-blue; |
||||
--gb-dm-dark-purple: @gb-dm-dark-purple; |
||||
--gb-dm-dark-aqua: @gb-dm-dark-aqua; |
||||
--gb-dm-dark-orange: @gb-dm-dark-orange; |
||||
--gb-dm-dark-gray: @gb-dm-dark-gray; |
||||
--gb-dm-light-red: @gb-dm-light-red; |
||||
--gb-dm-light-green: @gb-dm-light-green; |
||||
--gb-dm-light-yellow: @gb-dm-light-yellow; |
||||
--gb-dm-light-blue: @gb-dm-light-blue; |
||||
--gb-dm-light-purple: @gb-dm-light-purple; |
||||
--gb-dm-light-aqua: @gb-dm-light-aqua; |
||||
--gb-dm-light-orange: @gb-dm-light-orange; |
||||
--gb-dm-light-gray: @gb-dm-light-gray; |
||||
|
||||
|
||||
|
||||
// Light Background |
||||
--gb-lm-bg0: @gb-lm-bg0; |
||||
--gb-lm-bg0-hard: @gb-lm-bg0-hard; |
||||
--gb-lm-bg0-soft: @gb-lm-bg0-soft; |
||||
--gb-lm-bg1: @gb-lm-bg1; |
||||
--gb-lm-bg2: @gb-lm-bg2; |
||||
--gb-lm-bg3: @gb-lm-bg3; |
||||
--gb-lm-bg4: @gb-lm-bg4; |
||||
|
||||
// Light Foreground |
||||
--gb-lm-fg0: @gb-lm-fg0; |
||||
--gb-lm-fg1: @gb-lm-fg1; |
||||
--gb-lm-fg2: @gb-lm-fg2; |
||||
--gb-lm-fg3: @gb-lm-fg3; |
||||
--gb-lm-fg4: @gb-lm-fg4; |
||||
|
||||
// Light Colors |
||||
--gb-lm-dark-red: @gb-lm-dark-red; |
||||
--gb-lm-dark-green: @gb-lm-dark-green; |
||||
--gb-lm-dark-yellow: @gb-lm-dark-yellow; |
||||
--gb-lm-dark-blue: @gb-lm-dark-blue; |
||||
--gb-lm-dark-purple: @gb-lm-dark-purple; |
||||
--gb-lm-dark-aqua: @gb-lm-dark-aqua; |
||||
--gb-lm-dark-orange: @gb-lm-dark-orange; |
||||
--gb-lm-dark-gray: @gb-lm-dark-gray; |
||||
|
||||
--gb-lm-light-red: @gb-lm-light-red; |
||||
--gb-lm-light-green: @gb-lm-light-green; |
||||
--gb-lm-light-yellow: @gb-lm-light-yellow; |
||||
--gb-lm-light-blue: @gb-lm-light-blue; |
||||
--gb-lm-light-purple: @gb-lm-light-purple; |
||||
--gb-lm-light-aqua: @gb-lm-light-aqua; |
||||
--gb-lm-light-orange: @gb-lm-light-orange; |
||||
--gb-lm-light-gray: @gb-lm-light-gray; |
||||
} |
@ -0,0 +1,225 @@ |
||||
/* Base */ |
||||
*, |
||||
::before, |
||||
::after { |
||||
color: #a89984 !important; |
||||
border-color: #1d2021 !important; |
||||
outline-color: #1d2021 !important; |
||||
text-shadow: none !important; |
||||
box-shadow: none !important; |
||||
/*-moz-box-shadow: none !important;*/ |
||||
background-color: transparent !important; |
||||
} |
||||
html * { |
||||
color: inherit !important; |
||||
} |
||||
p::first-letter, |
||||
h1::first-letter, |
||||
h2::first-letter, |
||||
p::first-line { |
||||
color: inherit !important; |
||||
background: none !important; |
||||
} |
||||
/* :: Give solid BG :: */ |
||||
/* element */ |
||||
b, |
||||
i, |
||||
u, |
||||
strong { |
||||
color: #98971a; |
||||
} |
||||
html, |
||||
body, |
||||
li ul, |
||||
ul li, |
||||
table, |
||||
header, |
||||
article, |
||||
section, |
||||
nav, |
||||
menu, |
||||
aside, |
||||
[class*="nav"], |
||||
[class*="open"], |
||||
[id*="ropdown"], |
||||
[class*="ropdown"], |
||||
div[class*="menu"], |
||||
[class*="tooltip"], |
||||
div[class*="popup"], |
||||
div[id*="popup"], |
||||
div[id*="detail"], |
||||
div[class*="detail"], |
||||
div[class*="note"], |
||||
span[class*="note"], |
||||
div[class*="description"], |
||||
div[class*="content"], |
||||
div[class*="container"], |
||||
div[style*="display: block"], |
||||
div[style*="visibility: visible"] { |
||||
background-color: #282828 !important; |
||||
} |
||||
/*: No BG :*/ |
||||
*:not(:empty):not(span):not([class="html5-volume-slider html5-draggable"]):not([class="html5-player-chrome html5-stop-propagation"]), |
||||
*::before, |
||||
*::after, |
||||
td:empty, |
||||
p:empty, |
||||
div:empty:not([role]):not([style*="flashblock"]):not([class^="html5"]):not([class*="noscriptPlaceholder"]) { |
||||
background-image: none !important; |
||||
} |
||||
/*: Filter non-icons :*/ |
||||
span:not(:empty):not([class*="icon"]):not([id*="icon"]):not([class*="star"]):not([id*="star"]):not([id*="rating"]):not([class*="rating"]):not([class*="prite"]) { |
||||
background-image: none !important; |
||||
text-indent: 0 !important; |
||||
} |
||||
/*: Image opacity :*/ |
||||
img, |
||||
svg { |
||||
opacity: 0.75 !important; |
||||
} |
||||
img:hover, |
||||
svg:hover { |
||||
opacity: 1 !important; |
||||
} |
||||
/* Highlight */ |
||||
::-moz-selection { |
||||
background-color: #ebdbb2 !important; |
||||
color: #32302f !important; |
||||
} |
||||
/* ::: anchor/links ::: */ |
||||
a { |
||||
color: #689d6a !important; |
||||
background-color: #282828 !important; |
||||
opacity: 1 !important; |
||||
text-indent: 0 !important; |
||||
} |
||||
a:link { |
||||
color: #458588 !important; |
||||
} |
||||
a:visited { |
||||
color: #b16286 !important; |
||||
} |
||||
a:hover { |
||||
color: #d79921 !important; |
||||
background-color: #1d2021 !important; |
||||
} |
||||
a:active { |
||||
color: #d65d0e !important; |
||||
} |
||||
/* "Top level" div */ |
||||
body > div { |
||||
background-color: inherit !important; |
||||
} |
||||
/* :::::: Text Presentation :::::: */ |
||||
summary, |
||||
details { |
||||
background-color: inherit !important; |
||||
} |
||||
kbd, |
||||
time, |
||||
label, |
||||
.date { |
||||
color: #98971a !important; |
||||
} |
||||
acronym, |
||||
abbr { |
||||
border-bottom: 1px dotted !important; |
||||
cursor: help !important; |
||||
} |
||||
mark { |
||||
background-color: #cc241d !important; |
||||
} |
||||
/* :::::: Headings :::::: */ |
||||
h1, |
||||
h2, |
||||
h3, |
||||
h4, |
||||
h5, |
||||
h6 { |
||||
background-image: none !important; |
||||
border-radius: 5px !important; |
||||
/*-moz-border-radius: 5px !important;*/ |
||||
-webkit-border-radius: 5px !important; |
||||
text-indent: 0 !important; |
||||
} |
||||
h1, |
||||
h2, |
||||
h3, |
||||
h4, |
||||
h5, |
||||
h6 { |
||||
background-color: #1d2021 !important; |
||||
} |
||||
h1, |
||||
h2 { |
||||
color: #98971a !important; |
||||
} |
||||
h3, |
||||
h4 { |
||||
color: #d79921 !important; |
||||
} |
||||
h5, |
||||
h6 { |
||||
color: #d65d0e !important; |
||||
} |
||||
/* :::::: Tables, cells :::::: */ |
||||
table table { |
||||
background: #1d2021 !important; |
||||
} |
||||
th, |
||||
caption { |
||||
background: #282828 !important; |
||||
} |
||||
/* ::: Inputs, textareas ::: */ |
||||
input, |
||||
textarea, |
||||
button, |
||||
select, |
||||
option, |
||||
optgroup { |
||||
color: #ebdbb2 !important; |
||||
background: none #1d2021 !important; |
||||
-moz-appearance: none !important; |
||||
-webkit-appearance: none !important; |
||||
} |
||||
input, |
||||
textarea, |
||||
button { |
||||
border-color: #32302f !important; |
||||
border-width: 1px !important; |
||||
} |
||||
/* :::::: Button styling :::::: */ |
||||
input[type="button"], |
||||
input[type="submit"], |
||||
input[type="reset"], |
||||
button { |
||||
background: #1d2021 !important; |
||||
} |
||||
input[type="button"]:hover, |
||||
input[type="submit"]:hover, |
||||
input[type="reset"]:hover, |
||||
button:hover { |
||||
color: #32302f !important; |
||||
background: #ebdbb2 !important; |
||||
} |
||||
input[type="image"] { |
||||
opacity: 0.85 !important; |
||||
} |
||||
input[type="image"]:hover { |
||||
opacity: 0.95 !important; |
||||
} |
||||
/* Lightbox fix */ |
||||
html [id*="lightbox"] * { |
||||
background-color: transparent !important; |
||||
} |
||||
html [id*="lightbox"] img { |
||||
opacity: 1 !important; |
||||
} |
||||
/* Youtube Annotation */ |
||||
#movie_player-html5 .annotation { |
||||
background: #1d2021 !important; |
||||
} |
||||
/* Mozilla addons shrink/expand sections */ |
||||
.expando a { |
||||
background: none transparent !important; |
||||
} |
@ -0,0 +1,282 @@ |
||||
|
||||
/* Base */ |
||||
*, ::before, ::after |
||||
{ |
||||
color: #a89984 !important; |
||||
border-color: #1d2021 !important; |
||||
outline-color: #1d2021 !important; |
||||
text-shadow: none !important; |
||||
box-shadow: none !important; |
||||
/*-moz-box-shadow: none !important;*/ |
||||
background-color: transparent !important; |
||||
} |
||||
|
||||
html * |
||||
{ |
||||
color: inherit !important; |
||||
} |
||||
|
||||
p::first-letter, |
||||
h1::first-letter, |
||||
h2::first-letter, |
||||
p::first-line |
||||
{ |
||||
color: inherit !important; |
||||
background: none !important; |
||||
} |
||||
|
||||
/* :: Give solid BG :: */ |
||||
|
||||
/* element */ |
||||
b,i,u,strong |
||||
{ |
||||
color: #98971a; |
||||
} |
||||
|
||||
html, |
||||
body, |
||||
li ul, |
||||
ul li, |
||||
table, |
||||
header, |
||||
article, |
||||
section, |
||||
nav, |
||||
menu, |
||||
aside, |
||||
|
||||
/* common */ |
||||
|
||||
[class*="nav"], |
||||
[class*="open"], |
||||
[id*="ropdown"], /*dropdown*/ |
||||
[class*="ropdown"], |
||||
div[class*="menu"], |
||||
[class*="tooltip"], |
||||
div[class*="popup"], |
||||
div[id*="popup"], |
||||
|
||||
/* Notes, details, etc. Maybe useful */ |
||||
div[id*="detail"],div[class*="detail"], |
||||
div[class*="note"], span[class*="note"], |
||||
div[class*="description"], |
||||
|
||||
/* Also common */ |
||||
div[class*="content"], div[class*="container"], |
||||
|
||||
/* Popup divs that use visibility: hidden and display: none */ |
||||
div[style*="display: block"], |
||||
div[style*="visibility: visible"] |
||||
{ |
||||
background-color: #282828 !important; |
||||
} |
||||
|
||||
|
||||
|
||||
/*: No BG :*/ |
||||
*:not(:empty):not(span):not([class="html5-volume-slider html5-draggable"]):not([class="html5-player-chrome html5-stop-propagation"]), *::before, *::after, |
||||
td:empty, p:empty, div:empty:not([role]):not([style*="flashblock"]):not([class^="html5"]):not([class*="noscriptPlaceholder"]) |
||||
{ |
||||
background-image: none !important; |
||||
} |
||||
|
||||
/*: Filter non-icons :*/ |
||||
span:not(:empty):not([class*="icon"]):not([id*="icon"]):not([class*="star"]):not([id*="star"]):not([id*="rating"]):not([class*="rating"]):not([class*="prite"]) |
||||
{ |
||||
background-image: none !important; |
||||
text-indent: 0 !important; |
||||
} |
||||
|
||||
/*: Image opacity :*/ |
||||
img, svg |
||||
{ |
||||
opacity: .75 !important; |
||||
} |
||||
|
||||
img:hover, svg:hover |
||||
{ |
||||
opacity: 1 !important; |
||||
} |
||||
|
||||
/* Highlight */ |
||||
::-moz-selection |
||||
{ |
||||
background-color: #ebdbb2 !important; |
||||
color: #32302f !important; |
||||
} |
||||
|
||||
/* ::: anchor/links ::: */ |
||||
|
||||
a |
||||
{ |
||||
color: #689d6a !important; |
||||
background-color: #282828 !important; |
||||
opacity: 1 !important; |
||||
text-indent: 0 !important; |
||||
} |
||||
|
||||
a:link |
||||
{ |
||||
color: #458588 !important; |
||||
} |
||||
|
||||
a:visited |
||||
{ |
||||
color: #b16286 !important; |
||||
} |
||||
|
||||
a:hover |
||||
{ |
||||
color: #d79921 !important; |
||||
background-color: #1d2021 !important; |
||||
} |
||||
|
||||
a:active |
||||
{ |
||||
color: #d65d0e !important; |
||||
} |
||||
|
||||
/* "Top level" div */ |
||||
|
||||
body > div |
||||
{ |
||||
background-color: inherit !important; |
||||
} |
||||
|
||||
/* :::::: Text Presentation :::::: */ |
||||
|
||||
summary, details |
||||
{ |
||||
background-color: inherit !important; |
||||
} |
||||
|
||||
kbd, time, label, .date |
||||
{ |
||||
color: #98971a !important; |
||||
} |
||||
|
||||
acronym, abbr |
||||
{ |
||||
border-bottom: 1px dotted !important; |
||||
cursor: help !important; |
||||
} |
||||
|
||||
mark |
||||
{ |
||||
background-color: #cc241d !important; |
||||
} |
||||
|
||||
|
||||
/* :::::: Headings :::::: */ |
||||
|
||||
h1,h2,h3,h4,h5,h6 |
||||
{ |
||||
background-image: none !important; |
||||
border-radius: 5px !important; |
||||
/*-moz-border-radius: 5px !important;*/ |
||||
-webkit-border-radius: 5px !important; |
||||
text-indent: 0 !important; |
||||
} |
||||
|
||||
h1,h2,h3,h4,h5,h6 |
||||
{ |
||||
background-color: #1d2021 !important; |
||||
} |
||||
|
||||
h1,h2 |
||||
{ |
||||
color: #98971a!important; |
||||
} |
||||
|
||||
h3,h4 |
||||
{ |
||||
color: #d79921!important; |
||||
} |
||||
|
||||
h5,h6 |
||||
{ |
||||
color: #d65d0e!important; |
||||
} |
||||
|
||||
/* :::::: Tables, cells :::::: */ |
||||
|
||||
table table |
||||
{ |
||||
background: #1d2021 !important; |
||||
} |
||||
|
||||
th, caption |
||||
{ |
||||
background: #282828 !important; |
||||
} |
||||
|
||||
/* ::: Inputs, textareas ::: */ |
||||
|
||||
input, textarea, button, |
||||
select,option,optgroup |
||||
{ |
||||
color: #ebdbb2 !important; |
||||
background: none #1d2021 !important; |
||||
-moz-appearance: none !important; |
||||
-webkit-appearance: none !important; |
||||
} |
||||
|
||||
input, |
||||
textarea, |
||||
button |
||||
{ |
||||
border-color: #32302f !important; |
||||
border-width: 1px !important; |
||||
} |
||||
|
||||
/* :::::: Button styling :::::: */ |
||||
|
||||
input[type="button"], |
||||
input[type="submit"], |
||||
input[type="reset"], |
||||
button |
||||
{ |
||||
background: #1d2021 !important; |
||||
} |
||||
|
||||
input[type="button"]:hover, |
||||
input[type="submit"]:hover, |
||||
input[type="reset"]:hover, |
||||
button:hover |
||||
{ |
||||
color: #32302f !important; |
||||
background: #ebdbb2 !important; |
||||
} |
||||
|
||||
input[type="image"] |
||||
{ |
||||
opacity: .85 !important; |
||||
} |
||||
|
||||
input[type="image"]:hover |
||||
{ |
||||
opacity: .95 !important; |
||||
} |
||||
|
||||
/* Lightbox fix */ |
||||
html [id*="lightbox"] * |
||||
{ |
||||
background-color: transparent !important; |
||||
} |
||||
|
||||
html [id*="lightbox"] img |
||||
{ |
||||
opacity: 1 !important; |
||||
} |
||||
|
||||
/* Youtube Annotation */ |
||||
#movie_player-html5 .annotation |
||||
{ |
||||
background: #1d2021 !important; |
||||
} |
||||
|
||||
/* Mozilla addons shrink/expand sections */ |
||||
.expando a |
||||
{ |
||||
background: none transparent !important; |
||||
} |
@ -1 +1 @@ |
||||
Subproject commit bd847bd8124b5c4051ed08cfd6cebd9f98dd8921 |
||||
Subproject commit fee53462f9a2ab89690076fdba8473df970ff3e7 |
@ -0,0 +1,6 @@ |
||||
polkit.addRule(function(action, subject) { |
||||
if (action.id == "org.libvirt.unix.manage" && |
||||
subject.isInGroup("kvm")) { |
||||
return polkit.Result.YES; |
||||
} |
||||
}); |
Loading…
Reference in new issue