mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
remove old configs
This commit is contained in:
parent
a7ac339c7a
commit
313e11737e
13 changed files with 0 additions and 705 deletions
|
|
@ -1,52 +0,0 @@
|
|||
|
||||
# Shell
|
||||
shell-integration-features = no-cursor,sudo,title
|
||||
|
||||
# Fonts
|
||||
font-family = "IosevkaCustom"
|
||||
font-family-bold = "IosevkaCustom Semibold"
|
||||
font-size = 16
|
||||
adjust-cell-height = 8
|
||||
adjust-cursor-height = 8
|
||||
adjust-cursor-thickness = 1
|
||||
adjust-underline-position = 1
|
||||
adjust-box-thickness=-1
|
||||
|
||||
# Colors
|
||||
foreground = #eceef4
|
||||
background = #0e1019
|
||||
background-opacity = 0.97
|
||||
|
||||
palette = 0=#45475a
|
||||
palette = 1=#f38ba8
|
||||
palette = 2=#a6e3a1
|
||||
palette = 3=#f9e2af
|
||||
palette = 4=#89b4fa
|
||||
palette = 5=#f5c2e7
|
||||
palette = 6=#94e2d5
|
||||
palette = 7=#eceef4
|
||||
palette = 8=#585b70
|
||||
palette = 9=#f38ba8
|
||||
palette = 10=#a6e3a1
|
||||
palette = 11=#f9e2af
|
||||
palette = 12=#89b4fa
|
||||
palette = 13=#f5c2e7
|
||||
palette = 14=#94e2d5
|
||||
palette = 15=#a6adc8
|
||||
|
||||
selection-background = #34395A
|
||||
selection-foreground = #ECEEF4
|
||||
|
||||
cursor-color = #767BA0
|
||||
cursor-text = #ECEEF4
|
||||
|
||||
# Cursor
|
||||
|
||||
cursor-style = block
|
||||
cursor-style-blink = false
|
||||
|
||||
window-decoration = false
|
||||
window-padding-y = 1
|
||||
window-padding-x = 1
|
||||
window-padding-balance = true
|
||||
gtk-titlebar = false
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
|
||||
general {
|
||||
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances.
|
||||
# before_sleep_cmd = loginctl lock-session # lock before suspend.
|
||||
# after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
|
||||
}
|
||||
|
||||
# Turn screen off after 5 min
|
||||
listener {
|
||||
timeout = 300
|
||||
on-timeout = hyprctl dispatch dpms off
|
||||
on-resume = hyprctl dispatch dpms on && brightnessctl -r
|
||||
}
|
||||
|
||||
# Lock screen after 10 min
|
||||
listener {
|
||||
timeout = 600
|
||||
on-timeout = loginctl lock-session
|
||||
}
|
||||
|
||||
|
||||
# Suspend after 30 min
|
||||
# listener {
|
||||
# timeout = 1800
|
||||
# on-timeout = systemctl suspend
|
||||
# }
|
||||
|
|
@ -1,200 +0,0 @@
|
|||
|
||||
# Variables
|
||||
# -----------------------------------------
|
||||
|
||||
# monitors
|
||||
$mainMonitor=DP-2
|
||||
$secondMonitor=HDMI-A-1
|
||||
|
||||
# colors
|
||||
$color_border = rgb(1a1c2d)
|
||||
$color_active_border = $color_border
|
||||
$color_inactive_border = $color_border
|
||||
|
||||
# Set programs that you use
|
||||
$terminal = alacritty
|
||||
$menu = wofi --show drun
|
||||
$run_prog = wofi --show run
|
||||
$screenshot = grim -g "$(slurp)" - | wl-copy
|
||||
$focusOrStart = .config/hypr/scripts/focus-or-start.sh
|
||||
|
||||
# Settings
|
||||
# -----------------------------------------
|
||||
|
||||
# Some default env vars.
|
||||
env = XCURSOR_SIZE,22
|
||||
env = QT_QPA_PLATFORMTHEME,qt5ct # change to qt6ct if you have that
|
||||
env = WLR_NO_HARDWARE_CURSORS,1
|
||||
|
||||
general {
|
||||
gaps_in = 0,0,-1,-1
|
||||
gaps_out = -1
|
||||
border_size = 1
|
||||
col.active_border = $color_active_border
|
||||
col.inactive_border = $color_inactive_border
|
||||
layout = dwindle
|
||||
allow_tearing = false
|
||||
}
|
||||
|
||||
input {
|
||||
kb_layout = pnx-us-se
|
||||
# kb_variant =
|
||||
# kb_model =
|
||||
# kb_options =
|
||||
# kb_rules =
|
||||
|
||||
follow_mouse = 1
|
||||
accel_profile = flat
|
||||
force_no_accel = true
|
||||
}
|
||||
|
||||
cursor {
|
||||
no_hardware_cursors = true
|
||||
enable_hyprcursor = true
|
||||
|
||||
# Dont hide my cursor!
|
||||
hide_on_key_press = false
|
||||
}
|
||||
|
||||
decoration {
|
||||
blur {
|
||||
enabled = false
|
||||
size = 1
|
||||
passes = 2
|
||||
}
|
||||
shadow {
|
||||
enabled = false
|
||||
}
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = yes
|
||||
animation = windows, 0
|
||||
animation = border, 0
|
||||
animation = borderangle, 0
|
||||
animation = fade, 0
|
||||
animation = workspaces, 1, 1, default
|
||||
}
|
||||
|
||||
dwindle {
|
||||
pseudotile = no # master switch for pseudotiling.
|
||||
preserve_split = yes
|
||||
}
|
||||
|
||||
misc {
|
||||
# disable the anime mascot wallpapers
|
||||
force_default_wallpaper = 0
|
||||
# Disable hyperland logo and splash
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = true
|
||||
# Set background color instead.
|
||||
background_color = 0x000000
|
||||
# Disable autoreload as i can reload myself.
|
||||
disable_autoreload = true
|
||||
}
|
||||
|
||||
debug {
|
||||
overlay = false
|
||||
disable_logs = false
|
||||
}
|
||||
|
||||
ecosystem {
|
||||
no_update_news = true
|
||||
no_donation_nag = true
|
||||
}
|
||||
|
||||
# Monitors
|
||||
# -----------------------------------------
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
#monitor=,preferred,auto,auto
|
||||
monitor=$mainMonitor,preferred,0x0,1
|
||||
monitor=$secondMonitor,1920x1080@60,760x-1080,1
|
||||
|
||||
# Workspaces and windows
|
||||
# -----------------------------------------
|
||||
|
||||
workspace = 1,monitor:$mainMonitor,default:true
|
||||
workspace = 2,monitor:$mainMonitor,default:true
|
||||
workspace = 3,monitor:$mainMonitor,default:true
|
||||
workspace = 4,monitor:$mainMonitor,default:true
|
||||
workspace = 5,monitor:$secondMonitor,persistent:true,default:true
|
||||
|
||||
windowrulev2 = suppressevent maximize, class:.* # You'll probably like this.
|
||||
windowrulev2 = workspace 2, class:firefox
|
||||
windowrulev2 = workspace 5, class:org.telegram.desktop.*
|
||||
|
||||
# Keybinds
|
||||
# -----------------------------------------
|
||||
|
||||
$mainMod = SUPER
|
||||
|
||||
# programs
|
||||
bind = $mainMod, D, exec, $menu
|
||||
bind = $mainMod, P, exec, $run_prog
|
||||
bind = $mainMod, Return, exec, $terminal
|
||||
bind = $mainMod, T, exec, $focusOrStart "telegram" "org.telegram"
|
||||
bind = $mainMod, G, exec, $focusOrStart "vivaldi-stable" "vivaldi-stable"
|
||||
bind = $mainMod, S, exec, $screenshot
|
||||
|
||||
# Windows
|
||||
bind = $mainMod, X, killactive,
|
||||
bind = $mainMod, F, togglefloating,
|
||||
bind = $mainMod, V, togglesplit, # dwindle
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, left, movefocus, l
|
||||
bind = $mainMod, H, movefocus, l
|
||||
bind = $mainMod, right, movefocus, r
|
||||
bind = $mainMod, L, movefocus, r
|
||||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, K, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
bind = $mainMod, J, movefocus, d
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
# bind = $mainMod, 6, workspace, 6
|
||||
# bind = $mainMod, 7, workspace, 7
|
||||
# bind = $mainMod, 8, workspace, 8
|
||||
# bind = $mainMod, 9, workspace, 9
|
||||
|
||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
# bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
# bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||
# bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||
# bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||
|
||||
# Example special workspace (scratchpad)
|
||||
#bind = $mainMod, S, togglespecialworkspace, magic
|
||||
#bind = $mainMod SHIFT, S, movetoworkspace, special:magic
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Autostart
|
||||
# -------------
|
||||
|
||||
# Hyprland apps
|
||||
exec-once = hypridle
|
||||
|
||||
# set wallpaper
|
||||
exec-once=hyprpaper
|
||||
|
||||
# Bar
|
||||
exec-once=waybar
|
||||
|
||||
# Programs
|
||||
exec-once=nm-applet
|
||||
exec-once=nextcloud
|
||||
exec-once=telegram
|
||||
|
|
@ -1,90 +0,0 @@
|
|||
# sample hyprlock.conf
|
||||
# for more configuration options, refer https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock
|
||||
#
|
||||
# rendered text in all widgets supports pango markup (e.g. <b> or <i> tags)
|
||||
# ref. https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/#general-remarks
|
||||
#
|
||||
# shortcuts to clear password buffer: ESC, Ctrl+U, Ctrl+Backspace
|
||||
#
|
||||
# you can get started by copying this config to ~/.config/hypr/hyprlock.conf
|
||||
#
|
||||
|
||||
$mainMonitor=DP-2
|
||||
$font = Monospace
|
||||
$color_text=rgb(205, 214, 244)
|
||||
$color_fail=rgb(235, 160, 172)
|
||||
$color_check=rgb(180, 190, 254)
|
||||
$color_input=rgb(147, 153, 178)
|
||||
|
||||
general {
|
||||
hide_cursor = true
|
||||
ignore_empty_input = true
|
||||
immediate_render = true
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = true
|
||||
bezier = linear, 1, 1, 0, 0
|
||||
animation = fade, 1, 3, linear
|
||||
animation = inputFieldColors, 0
|
||||
animation = inputFieldFade, 0
|
||||
animation = inputFieldWidth, 0
|
||||
animation = inputFieldDots, 1, 1, linear
|
||||
}
|
||||
|
||||
background {
|
||||
monitor = $mainMonitor
|
||||
path = screenshot
|
||||
vibrancy = 0.02
|
||||
color = rgb(17, 17, 27)
|
||||
blur_passes = 5
|
||||
}
|
||||
|
||||
input-field {
|
||||
monitor = $mainMonitor
|
||||
size = 500, 70
|
||||
outline_thickness = 0
|
||||
outer_color = rgba(0, 0, 0, 0)
|
||||
inner_color = rgba(0, 0, 0, 0)
|
||||
font_color = $color_input
|
||||
check_color = $color_check
|
||||
fail_color = $color_fail
|
||||
swap_font_color = true
|
||||
fade_on_empty = false
|
||||
rounding = 0
|
||||
placeholder_text =
|
||||
fail_text = $PAMFAIL ($ATTEMPTS)
|
||||
|
||||
dots_size = 0.4
|
||||
dots_spacing = 0.2
|
||||
dots_center = true
|
||||
|
||||
position = 0, 0
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
|
||||
# TIME
|
||||
label {
|
||||
monitor = $mainMonitor
|
||||
text = $TIME # ref. https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/#variable-substitution
|
||||
font_size = 90
|
||||
color = $color_text
|
||||
|
||||
position = 0, -300
|
||||
halign = center
|
||||
valign = top
|
||||
}
|
||||
|
||||
# DATE
|
||||
label {
|
||||
monitor = $mainMonitor
|
||||
text = cmd[update:60000] date +"%A, %d %B %Y" # update every 60 seconds
|
||||
font_size = 25
|
||||
color = $color_text
|
||||
|
||||
position = 0, -450
|
||||
halign = center
|
||||
valign = top
|
||||
}
|
||||
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
$PATH=~/.local/share/wallpapers/wallpaper.jpeg
|
||||
|
||||
preload = $PATH
|
||||
wallpaper = , $PATH
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
execCommand=$1
|
||||
className=$2
|
||||
|
||||
class=$(hyprctl -j clients | jq -r ".[] | select(.class | startswith(\"${className}\")) | .class")
|
||||
|
||||
if [[ $class != "" ]]
|
||||
then
|
||||
hyprctl dispatch focuswindow "class:${class}"
|
||||
else
|
||||
${execCommand} &
|
||||
fi
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
general {
|
||||
colors = true
|
||||
color_good = "#8ABEB7"
|
||||
color_degraded = "#FFCC99"
|
||||
color_bad = "#CC817F"
|
||||
}
|
||||
|
||||
cpu_usage {
|
||||
format = " %usage"
|
||||
}
|
||||
|
||||
memory {
|
||||
format = " %percentage_used"
|
||||
threshold_degraded = "20%"
|
||||
threshold_critical = "10%"
|
||||
}
|
||||
|
||||
tztime local {
|
||||
format = " %H:%M:%S %a, %d %b %Y"
|
||||
}
|
||||
|
||||
order = "cpu_usage"
|
||||
order += "memory"
|
||||
order += "tztime local"
|
||||
|
|
@ -1,98 +0,0 @@
|
|||
|
||||
term xterm
|
||||
|
||||
shell_integration no-cursor
|
||||
clipboard_control write-primary write-clipboard no-append
|
||||
|
||||
# Text
|
||||
font_family family="IosevkaCustom Nerd Font"
|
||||
bold_font family="IosevkaCustom Nerd Font" style="SemiBold"
|
||||
italic_font auto
|
||||
bold_italic_font auto
|
||||
font_size 16.0
|
||||
disable_ligatures never
|
||||
modify_font cell_height 6px
|
||||
box_drawing_scale 0.001, 0.5, 0.5, 0.5
|
||||
text_composition_strategy legacy
|
||||
|
||||
# Rendering
|
||||
sync_to_monitor no
|
||||
|
||||
# Cursor
|
||||
cursor_shape block
|
||||
cursor_blink_interval 0
|
||||
|
||||
# Background
|
||||
# background_opacity 0.98
|
||||
# transparent_background_colors #1a1c2d@0.98
|
||||
|
||||
# Colors
|
||||
foreground #eceef4
|
||||
background #0E1019
|
||||
selection_foreground none
|
||||
selection_background #5B5F7C
|
||||
|
||||
# Cursor colors
|
||||
cursor #767BA0
|
||||
cursor_text_color #eceef4
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #F5E0DC
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #B4BEFE
|
||||
inactive_border_color #6C7086
|
||||
bell_border_color #F9E2AF
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color #1E1E2E
|
||||
macos_titlebar_color #1E1E2E
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #11111B
|
||||
active_tab_background #CBA6F7
|
||||
inactive_tab_foreground #CDD6F4
|
||||
inactive_tab_background #181825
|
||||
tab_bar_background #11111B
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #1E1E2E
|
||||
mark1_background #B4BEFE
|
||||
mark2_foreground #1E1E2E
|
||||
mark2_background #CBA6F7
|
||||
mark3_foreground #1E1E2E
|
||||
mark3_background #74C7EC
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #45475A
|
||||
color8 #585B70
|
||||
|
||||
# red
|
||||
color1 #F38BA8
|
||||
color9 #F38BA8
|
||||
|
||||
# green
|
||||
color2 #A6E3A1
|
||||
color10 #A6E3A1
|
||||
|
||||
# yellow
|
||||
color3 #F9E2AF
|
||||
color11 #F9E2AF
|
||||
|
||||
# blue
|
||||
color4 #89B4FA
|
||||
color12 #89B4FA
|
||||
|
||||
# magenta
|
||||
color5 #F5C2E7
|
||||
color13 #F5C2E7
|
||||
|
||||
# cyan
|
||||
color6 #94E2D5
|
||||
color14 #94E2D5
|
||||
|
||||
# white
|
||||
color7 #BAC2DE
|
||||
color15 #A6ADC8
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
@define-color rosewater #f5e0dc;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color red #f38ba8;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color peach #fab387;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color sky #89dceb;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
@define-color text #cdd6f4;
|
||||
@define-color subtext1 #bac2de;
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color overlay2 #9399b2;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color surface2 #585b70;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface0 #313244;
|
||||
@define-color base #1a1c2d;
|
||||
@define-color mantle #0D0F17;
|
||||
@define-color crust #0C0D14;
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
// vim: ft=jsonc
|
||||
// -*- mode: jsonc -*-
|
||||
{
|
||||
"output": "DP-2",
|
||||
"position": "bottom",
|
||||
"height": 34,
|
||||
"spacing": 0,
|
||||
// Choose the order of the modules
|
||||
"modules-left": [
|
||||
"hyprland/workspaces",
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/window",
|
||||
],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"network",
|
||||
"cpu",
|
||||
"memory",
|
||||
"clock"
|
||||
],
|
||||
// Modules configuration
|
||||
"hyprland/workspaces": {
|
||||
"format": "{id}<sup>{icon}</sup>",
|
||||
"format-icons": {
|
||||
"default": "",
|
||||
"urgent": "*",
|
||||
},
|
||||
"all-outputs": true,
|
||||
"expand": true,
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 24,
|
||||
"spacing": 10
|
||||
},
|
||||
"network": {
|
||||
"format-ethernet": " {ifname}",
|
||||
"format-wifi": " {ifname}",
|
||||
"format-disconnected": " ",
|
||||
"tooltip-format": "{ipaddr} via {gwaddr}",
|
||||
"tooltip-format-disconnected": "Disconnected",
|
||||
},
|
||||
"clock": {
|
||||
"interval": 1,
|
||||
"format": "{:%H:%M:%S %a %d}",
|
||||
// "format": "{:%H:%M:%S %Y-%m-%d}",
|
||||
"tooltip-format": "{calendar}"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"tooltip": false
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
@import "colors.css";
|
||||
|
||||
* {
|
||||
font-family: "IosevkaCustom Nerd Font";
|
||||
font-size: 22px;
|
||||
min-height: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
color: @text;
|
||||
background: @mantle;
|
||||
}
|
||||
|
||||
/* Workspace buttons */
|
||||
button {
|
||||
color: @blue;
|
||||
box-shadow: inset 0 3px transparent;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:hover,
|
||||
button.active,
|
||||
button.focused {
|
||||
background: inherit;
|
||||
box-shadow: inset 0 3px @blue;
|
||||
}
|
||||
|
||||
.modules-right {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
.modules-right > widget > * {
|
||||
padding: 0 .4em;
|
||||
}
|
||||
|
||||
.modules-right > widget:not(:last-child) > * {
|
||||
margin-right: .4em;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: @sky;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: @peach;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: @mauve;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: @lavender;
|
||||
}
|
||||
|
||||
#network.disabled,
|
||||
#network.disconnected {
|
||||
color: @red;
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
show=drun
|
||||
prompt=
|
||||
width=30%
|
||||
term=alacritty
|
||||
matching=fuzzy
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
* {
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
color: #eceef4;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
window {
|
||||
margin: 0px;
|
||||
background-color: #0C0D14;
|
||||
}
|
||||
|
||||
#input {
|
||||
border: none;
|
||||
background-color: #0D0F17;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
margin: 0px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#entry {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#entry:focus {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background-color: #191B2B;
|
||||
border: none;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue