rename config folder

This commit is contained in:
Morten Bendtsen
2021-01-19 17:05:45 +01:00
parent a9ac801220
commit fb23f299e7
28 changed files with 0 additions and 0 deletions

View File

@@ -1,235 +0,0 @@
// Global
{
"layer": "top",
"position": "top",
// If height property would be not present, it'd be calculated dynamically
"height": 30,
"modules-left": [
"custom/launcher",
"sway/workspaces",
"sway/mode",
],
"modules-center": [
"custom/des",
"custom/seperator",
"custom/firefox",
"custom/seperator",
"custom/files",
"custom/seperator",
"custom/terminal",
"custom/seperator",
],
"modules-right": [
"network",
"memory",
"cpu",
"custom/weather",
"pulseaudio",
"custom/keyboard-layout",
"battery",
"backlight",
"clock#date",
"clock#time",
"tray",
"custom/power"
],
// Modules
"sway/workspaces": {
"disable-scroll": true,
"all-outputs": false,
"format": "{icon}",
"format-icons": {
"1": "",
"2": "",
"3": "",
"4": "",
"5": "",
"6": "",
"urgent": "",
"focused": ",",
"default": ""
}
},
"sway/mode": {
"format": "<span style=\"italic\">{}</span>"
},
"battery": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ",
"format-alt": "{time} {icon}",
// "format-good": "", // An empty format will hide the module
// "format-full": "",
"format-icons": ["", "", "", "", ""]
},
"clock#time": {
"interval": 1,
"format": "{:%H:%M:%S}",
"tooltip": false
},
"clock#date": {
"interval": 10,
"format": " {:%e %b %Y}", // Icon: calendar-alt
"tooltip-format": "{:%e %B %Y}"
},
"cpu": {
"interval": 5,
"format": " {usage}% ({load})", // Icon: microchip
"states": {
"warning": 70,
"critical": 90
},
"on-click": "htop",
},
"custom/keyboard-layout": {
"exec": "swaymsg -t get_inputs | grep -m1 'xkb_active_layout_name' | cut -d '\"' -f4",
// Interval set only as a fallback, as the value is updated by signal
"interval": 30,
"format": " {}", // Icon: keyboard
// Signal sent by Sway key binding (~/.config/sway/key-bindings)
"signal": 1, // SIGHUP
"tooltip": false
},
"memory": {
"interval": 5,
"format": " {}%", // Icon: memory
"states": {
"warning": 70,
"critical": 90
}
},
"network": {
"interval": 5,
"format-wifi": " {essid} ({signalStrength}%)", // Icon: wifi
"format-ethernet": " {ifname}: {ipaddr}/{cidr}", // Icon: ethernet
"format-disconnected": "⚠ Disconnected",
"tooltip-format": "{ifname}: {ipaddr}"
},
"sway/mode": {
"format": "<span style=\"italic\"> {}</span>", // Icon: expand-arrows-alt
"tooltip": false
},
"sway/window": {
"format": "{}",
"max-length": 120
},
"sway/workspaces": {
"all-outputs": false,
"disable-scroll": true,
"format": "{icon} {name}",
"format-icons": {
"1:www": "龜", // Icon: firefox-browser
"2:mail": "", // Icon: mail
"3:editor": "", // Icon: code
"4:terminals": "", // Icon: terminal
"5:portal": "", // Icon: terminal
"urgent": "",
"focused": "",
"default": ""
}
},
"pulseaudio": {
"scroll-step": 1, // %, can be a float
"format": "{volume}% {icon}",
"format-bluetooth": "{volume}% {icon} {format_source}",
"format-bluetooth-muted": " {icon} {format_source}",
"format-muted": " {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "",
"format-icons": {
"headphone": "",
"hands-free": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["奄"]
},
"on-click": "pavucontrol",
"on-scroll-up": "pactl set-sink-volume @DEFAULT_SINK@ -5%",
"on-scroll-down": "pactl set-sink-volume @DEFAULT_SINK@ +5%",
},
"custom/weather": {
"exec": "~/.config/sway/scripts/weather.sh Royal Tunbridge Wells",
"format": "{}",
"return-type": "json",
"interval": 600
},
"tray": {
"icon-size": 21,
"spacing": 10
},
"backlight": {
"interval": 5,
"format": "{icon} {percent}%",
"format-alt": "{percent}% {icon}",
"format-alt-click": "click-right",
"format-icons": ["🌕", "🌔", "🌓", "🌒", "🌑"],
"on-scroll-down": "brightnessctl -c backlight set +5%",
"on-scroll-up": "brightnessctl -c backlight set 5%-"
},
"custom/power": {
"format": "⏻",
"on-click": "exec wlogout",
"tooltip": false
},
"custom/firefox": {
"format": "",
"on-click": "exec usr/bin/firefox",
"tooltip": false
},
"custom/terminal": {
"format": "",
"on-click": "exec usr/bin/alacritty",
"tooltip": false
},
"custom/files": {
"format": "",
"on-click": "usr/bin/thunar",
"tooltip": false
},
"custom/seperator": {
"format": "|",
},
"custom/launcher": {
"format":"",
"on-click": "exec /usr/bin/wofi",
"tooltip": false
},
"custom/des": {
"format": "Applications",
},
}
//To set weather look in the weather script and replace $LOCATION with your LOCATION

View File

@@ -1,13 +0,0 @@
#!/bin/bash
LOC="$1"
# HTML encode string as %20
LOCATION=$(sed -e "s/ /%20/g" <<<"$LOC")
content=$(curl -sS "https://thisdavej.azurewebsites.net/api/weather/current?loc=$LOCATION&deg=C")
ICON=$(curl -s 'https://wttr.in/?format=1' | sed 's/[+0-9a-cA-Z°-]//g' )
# echo $ICON
TEMP=$(echo $content | jq -r '. | "\(.temperature)°\(.degType)"' | sed 's/"//g')
TOOLTIP=$(echo $content | jq -r '. | "\(.temperature)°\(.degType)\n\(.skytext)"' | sed 's/"//g')
CLASS=$(echo $content | jq .skytext)
echo '{"text": "'$TEMP'", "tooltip": "'$ICON $TOOLTIP $LOC'", "class": '$CLASS' }'

View File

@@ -1,274 +0,0 @@
/* =============================================================================
*
* Waybar configuration
*
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
*
* =========================================================================== */
/* -----------------------------------------------------------------------------
* Keyframes
* -------------------------------------------------------------------------- */
@keyframes blink-warning {
70% {
color: white;
}
to {
color: white;
background-color: orange;
}
}
@keyframes blink-critical {
70% {
color: white;
}
to {
color: white;
background-color: red;
}
}
/* -----------------------------------------------------------------------------
* Base styles
* -------------------------------------------------------------------------- */
/* Reset all styles */
* {
border: none;
border-radius: 0;
min-height: 0;
margin: 0;
padding: 0;
}
/* The whole bar */
#waybar {
background: #323232;
color: white;
font-family: Cantarell, Noto Sans, sans-serif;
font-size: 13px;
}
/* Each module */
#battery,
#clock,
#cpu,
#backlight
#custom-keyboard-layout,
#memory,
#mode,
#network,
#pulseaudio,
#custom-weather,
#temperature,
#tray {
padding-left: 10px;
padding-right: 10px;
margin-right: 2px;
margin-top: 4px;
margin-bottom:4px;
margin-left: 2px;
}
/* -----------------------------------------------------------------------------
* Module styles
* -------------------------------------------------------------------------- */
#battery {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
background-color: #545157;
margin-right: 8px;
margin-left: 8px;
font-size: 13px;
}
#battery.warning {
color: orange;
}
#battery.critical {
color: red;
}
#battery.warning.discharging {
animation-name: blink-warning;
animation-duration: 3s;
}
#battery.critical.discharging {
animation-name: blink-critical;
animation-duration: 2s;
}
#clock {
font-weight: bold;
background-color: #545157;
margin-left: 2px;
}
#cpu {
background-color: #545157;
}
#cpu.warning {
color: orange;
}
#cpu.critical {
color: red;
}
#memory {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
color: #a3be8c
}
#memory.warning {
color: orange;
}
#memory.critical {
color: red;
animation-name: blink-critical;
animation-duration: 2s;
}
#mode {
background: #64727D;
border-top: 2px solid white;
/* To compensate for the top border and still have vertical centering */
padding-bottom: 2px;
}
#network {
background-color: #545157;
}
#network.disconnected {
color: orange;
}
#pulseaudio {
color: @base07;
background-color: #545157;
margin-right: 8px;
}
#pulseaudio.muted {
color: @base07;
margin-right: 8px;
}
#custom-spotify {
color: rgb(102, 220, 105);
}
#temperature {
/* No styles */
}
#temperature.critical {
color: red;
}
#tray {
font-size: 17px;
margin-right: 7px;
margin-top: 4px;
margin-bottom:4px;
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
#window {
font-weight: bold;
}
#workspaces button {
border-top: 2px solid transparent;
/* To compensate for the top border and still have vertical centering */
padding-bottom: 2px;
padding-left: 10px;
padding-right: 10px;
color: #888888;
}
#workspaces button.focused {
border-color: #4c7899;
color: white;
background-color: #285577;
}
#workspaces button.urgent {
border-color: #c9545d;
color: #c9545d;
}
#custom-power {
color: #eceff4;
font-size: 18px;
margin-right: 7px;
margin-top: 4px;
margin-bottom:4px;
padding-left: 10px;
padding-right: 10px;
background-color: #545157;
}
#backlight {
margin-right:5px;
color: #c4b729;
}
#custom-weather {
color:#81a1c1;
}
#custom-firefox {
font-size: 20px;
color: #d08770;
}
#custom-files {
color: #ebcb8b;
font-size: 20px;
}
#custom-seperator {
color: #a3be8c;
margin-left: 20px;
margin-right: 20px;
font-size: 20px;
}
#custom-big {
margin-right: 200px;
}
#custom-des {
margin-left: 20px;
font-size: 15px;
}
#custom-keyboard-layout {
color: #c90000;
}
#custom-launcher {
color: #eceff4;
font-size: 25px;
margin-right: 7px;
padding-left: 15px;
padding-right: 15px;
background-color: #545157;
}