├── .Xresources ├── .config ├── dunst │ └── dunstrc ├── i3 │ ├── bright.sh │ ├── brightdown.sh │ ├── brightup.sh │ └── config ├── mpd │ ├── database │ ├── log │ ├── mpd.conf │ ├── state │ └── sticker.sql ├── polybar │ ├── config │ ├── launch.sh │ └── scripts │ │ ├── daily-poem │ │ ├── info-hackspeed.sh │ │ ├── openweathermap-fullfeatured.sh │ │ └── poem.txt └── rofi │ ├── config.rasi │ └── oxide.rasi ├── .gitattributes ├── .ncmpcpp ├── config └── error.log ├── .vimrc ├── README.md ├── README_en.md ├── screenshot.png ├── screenshot1.png ├── utools-0.7.1beta-1-x86_64.pkg.tar.xz └── 图片 └── 1486262446001.png /.Xresources: -------------------------------------------------------------------------------- 1 | !!$HOME/.Xresources 2 | URxvt.preeditType:Root 3 | !!调整此处设置输入法 4 | URxvt.inputMethod:fcitx 5 | !!颜色设置 6 | URxvt.depth:32 7 | !!中括号内数表示透明度 8 | URxvt.inheritPixmap:true 9 | URxvt.background:#000000 10 | URxvt.foreground:#ffffff 11 | URxvt.colorBD:Gray95 12 | URxvt.colorUL:Green 13 | URxvt.color1:Red2 14 | URxvt.color4:RoyalBlue 15 | URxvt.color5:Magenta2 16 | URxvt.color8:Gray50 17 | URxvt.color10:Green2 18 | URxvt.color12:DodgerBlue 19 | URxvt.color14:Cyan2 20 | URxvt.color15:Gray95 21 | !!URL操作 22 | URxvt.urlLauncher:google-chrome-stable 23 | URxvt.matcher.button:1 24 | Urxvt.perl-ext-common:matcher 25 | !!滚动条设置 26 | URxvt.scrollBar:False 27 | URxvt.scrollBar_floating:False 28 | URxvt.scrollstyle:plain 29 | !!滚屏设置 30 | URxvt.mouseWheelScrollPage:True 31 | URxvt.scrollTtyOutput:False 32 | URxvt.scrollWithBuffer:True 33 | URxvt.scrollTtyKeypress:True 34 | !!光标闪烁 35 | URxvt.cursorBlink:True 36 | URxvt.saveLines:3000 37 | !!边框 38 | URxvt.borderLess:False 39 | !!字体设置 40 | Xft.dpi:96 41 | URxvt.font:xft:Monaco:size=11.5:antialias=true,xft:Noto Mono for Powerline:size=11.5:antialias=true,xft:TerminessTTF Nerd Font Mono:size=12.5:antialias=true,xft:DejaVuSansMono:size=11.5,xft:Font Awesome 5 Brand:size=11.5 42 | -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- 1 | [global] 2 | monitor = 0 3 | follow = mouse 4 | geometry = "320x5-15+15" 5 | indicate_hidden = yes 6 | shrink = no 7 | transparency = 0 8 | notification_height = 0 9 | separator_height = 2 10 | padding = 10 11 | horizontal_padding = 10 12 | frame_width = 1 13 | frame_color = "#232323" 14 | separator_color = frame 15 | sort = yes 16 | idle_threshold = 120 17 | font = Source Sans Pro 10 18 | line_height = 0 19 | markup = full 20 | format = "%s %p\n%b" 21 | alignment = left 22 | show_age_threshold = 60 23 | word_wrap = yes 24 | ellipsize = middle 25 | ignore_newline = no 26 | stack_duplicates = true 27 | hide_duplicate_count = false 28 | show_indicators = yes 29 | icon_position = left 30 | max_icon_size = 32 31 | icon_path = /usr/share/icons/Paper/16x16/status/:/usr/share/icons/Paper/16x16/devices/:/usr/share/icons/Paper/16x16/apps/ 32 | sticky_history = yes 33 | history_length = 20 34 | always_run_script = true 35 | startup_notification = false 36 | verbosity = mesg 37 | corner_radius = 0 38 | force_xinerama = false 39 | mouse_left_click = close_current 40 | mouse_middle_click = do_action 41 | mouse_right_click = close_all 42 | 43 | [shortcuts] 44 | close = ctrl+space 45 | close_all = ctrl+shift+space 46 | history = ctrl+grave 47 | context = ctrl+shift+period 48 | 49 | [urgency_low] 50 | background = "#232323" 51 | foreground = "#a8a8a8" 52 | timeout = 10 53 | 54 | [urgency_normal] 55 | background = "#232323" 56 | foreground = "#a8a8a8" 57 | timeout = 10 58 | 59 | [urgency_critical] 60 | background = "#d64e4e" 61 | foreground = "#f0e0e0" 62 | frame_color = "#d64e4e" 63 | timeout = 0 64 | icon = /usr/share/icons/Paper/16x16/status/dialog-warning.png 65 | -------------------------------------------------------------------------------- /.config/i3/bright.sh: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # File Name: bright.sh 3 | # Author: Dimerbone 4 | # mail: 2298843694@qq.com 5 | # Created Time: 2019年08月15日 星期四 10时05分35秒 6 | ######################################################################### 7 | #!/bin/zsh 8 | #PATH=/home/edison/bin:/home/edison/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/work/tools/gcc-3.4.5-glibc-2.3.6/bin 9 | #export PATH 10 | 11 | echo "Please type in your password to access brightness controller."&&sudo chmod 777 /sys/class/backlight/intel_backlight/brightness && echo "Brightness Controller Accessed" && sleep 4s 12 | -------------------------------------------------------------------------------- /.config/i3/brightdown.sh: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # File Name: brightdown.sh 3 | # Author: amoscykl 4 | # mail: amoscykl980629@163.com 5 | # Created Time: 2019年08月11日 星期日 08时32分57秒 6 | ######################################################################### 7 | #!/bin/zsh 8 | varl=-50 9 | varl=$(($varl + $(cat /sys/class/backlight/intel_backlight/brightness))) 10 | echo $varl > /sys/class/backlight/intel_backlight/brightness 11 | -------------------------------------------------------------------------------- /.config/i3/brightup.sh: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # File Name: brightup.sh 3 | # Author: Dimerbone 4 | # mail: 15857404828@163.com 5 | # Created Time: 2019年08月11日 星期日 08时37分01秒 6 | ######################################################################### 7 | #!/bin/zsh 8 | varl=+50 9 | varl=$(($varl + $(cat /sys/class/backlight/intel_backlight/brightness))) 10 | echo $varl > /sys/class/backlight/intel_backlight/brightness 11 | -------------------------------------------------------------------------------- /.config/i3/config: -------------------------------------------------------------------------------- 1 | # set Mod 2 | set $mod Mod4 3 | 4 | # 自启 5 | exec mpd ~/.config/mpd/mpd.conf 6 | exec --no-startup-id compton -b 7 | exec_always --no-startup-id feh --bg-scale "/home/fe/图片/1482211612923.jpg" 8 | exec --no-startup-id electron-ssr 9 | exec_always --no-startup-id fcitx 10 | ## exec_always --no-startup-id conky 11 | exec urxvt -sh 40 -e ~/.config/i3/bright.sh 12 | exec_always --no-startup-id dunst 13 | exec --no-startup-id utools 14 | 15 | # 截图 16 | ## bindsym Print exec shutter -f -e -o ~/图片/%Y-%m-%d-%T.png 17 | ## bindsym $mod+Print exec shutter -s -e -o ~/图片/%Y-%m-%d-%T.png 18 | bindsym Print exec deepin-screenshot 19 | 20 | # for screen lock 21 | bindsym $mod+l exec i3lock-fancy 22 | 23 | # for sound control 24 | bindsym XF86AudioRaiseVolume exec amixer set Master 5000+ 25 | bindsym $mod+Shift+plus exec amixer set Master 5000+ 26 | bindsym XF86AudioLowerVolume exec amixer set Master 5000- 27 | bindsym $mod+Shift+minus exec amixer set Master 5000- 28 | bindsym XF86AudioMute exec amixer set Master toggle 29 | 30 | # Screen brightness controls use backlight 31 | bindsym XF86MonBrightnessUp exec sh ~/.config/i3/brightup.sh # increase screen brightness 32 | bindsym XF86MonBrightnessDown exec sh ~/.config/i3/brightdown.sh # decrease screen brightness 33 | 34 | # Font for window titles. Will also be used by the bar unless a different font 35 | font pango:ttf-liberation-mono 14 36 | 37 | # Use Mouse+$mod to drag floating windows to their wanted position 38 | floating_modifier $mod 39 | 40 | # run rofi 41 | bindsym $mod+d exec rofi -show run 42 | bindsym $mod+q exec rofi -show window 43 | 44 | # start a terminal 45 | bindsym $mod+Return exec urxvt -sh 40 46 | 47 | # kill focused window 48 | bindsym $mod+Shift+q kill 49 | 50 | # change focus 51 | bindsym $mod+Left focus left 52 | bindsym $mod+Down focus down 53 | bindsym $mod+Up focus up 54 | bindsym $mod+Right focus right 55 | 56 | # move focused window 57 | bindsym $mod+Shift+j move left 58 | bindsym $mod+Shift+k move down 59 | bindsym $mod+Shift+l move up 60 | bindsym $mod+Shift+semicolon move right 61 | 62 | # exec cmatrix 63 | bindsym $mod+Shift+x exec urxvt -sh 40 -e cmatrix 64 | 65 | # control music 66 | bindsym $mod+Ctrl+m exec urxvt -sh 40 -e ncmpcpp 67 | bindsym $mod+Ctrl+p exec mpc play 68 | bindsym $mod+Ctrl+o exec mpc pause 69 | bindsym $mod+Ctrl+l exec mpc next 70 | bindsym $mod+Ctrl+k exec mpc prev 71 | 72 | # alternatively, you can use the cursor keys: 73 | bindsym $mod+Shift+Left move left 74 | bindsym $mod+Shift+Down move down 75 | bindsym $mod+Shift+Up move up 76 | bindsym $mod+Shift+Right move right 77 | 78 | # split in horizontal orientation 79 | bindsym $mod+h split h 80 | 81 | # split in vertical orientation 82 | bindsym $mod+v split v 83 | 84 | # enter fullscreen mode for the focused container 85 | bindsym $mod+f fullscreen toggle 86 | 87 | # change container layout (stacked, tabbed, toggle split) 88 | bindsym $mod+s layout stacking 89 | bindsym $mod+w layout tabbed 90 | bindsym $mod+e layout toggle split 91 | 92 | # toggle tiling / floating 93 | bindsym $mod+Shift+space floating toggle 94 | 95 | # hide | show window 96 | bindsym $mod+minus move scratchpad 97 | bindsym $mod+plus scratchpad show 98 | 99 | # change focus between tiling / floating windows 100 | bindsym $mod+space focus mode_toggle 101 | 102 | # focus the parent container 103 | bindsym $mod+a focus parent 104 | 105 | # navigate workspaces next /previous 106 | bindsym $mod+Tab workspace next 107 | bindsym $mod+Shift+Tab workspace prev 108 | 109 | set $ws1 "1:  " 110 | set $ws2 "2:  " 111 | set $ws3 "3:  " 112 | set $ws4 "4:  " 113 | set $ws5 "5:  " 114 | set $ws6 "6:  " 115 | set $ws7 "7:  " 116 | set $ws8 8 117 | set $ws9 9 118 | 119 | # switch to workspace 120 | bindsym $mod+1 workspace $ws1 121 | bindsym $mod+2 workspace $ws2 122 | bindsym $mod+3 workspace $ws3 123 | bindsym $mod+4 workspace $ws4 124 | bindsym $mod+5 workspace $ws5 125 | bindsym $mod+6 workspace $ws6 126 | bindsym $mod+7 workspace $ws7 127 | bindsym $mod+8 workspace $ws8 128 | bindsym $mod+9 workspace $ws9 129 | 130 | # move focused container to workspace 131 | bindsym $mod+Shift+1 move container to workspace $ws1 132 | bindsym $mod+Shift+2 move container to workspace $ws2 133 | bindsym $mod+Shift+3 move container to workspace $ws3 134 | bindsym $mod+Shift+4 move container to workspace $ws4 135 | bindsym $mod+Shift+5 move container to workspace $ws5 136 | bindsym $mod+Shift+6 move container to workspace $ws6 137 | bindsym $mod+Shift+7 move container to workspace $ws7 138 | bindsym $mod+Shift+8 move container to workspace $ws8 139 | bindsym $mod+Shift+9 move container to workspace $ws9 140 | 141 | # Automatically putting clients on specific workspaces 142 | assign [class="chrome"] $ws2 143 | assign [class="netease-cloud-music"] $ws4 144 | assign [class="wechat"] $ws3 145 | 146 | # window set 147 | for_window[class=^.*] border pixel 0 148 | for_window[window_role="pop-up"] floating enable 149 | for_window[window_role="task_dialog"] floating enbale 150 | for_window[class="netease-cloud-music"] floating enable 151 | for_window[class="VirtualBox Manager"] floating enable 152 | for_window[class="wechat"] floating enable 153 | for_window[class="vokoscreen"] floating enable 154 | for_window[class="VMware-workstation"] floating enable 155 | 156 | # disable follows_mouse 157 | focus_follows_mouse no 158 | 159 | # reload the configuration file 160 | bindsym $mod+Shift+c reload 161 | 162 | # restart i3 inplace (preserves your layout/session, can be used to upgrade i3) 163 | bindsym $mod+Shift+r restart 164 | 165 | # exit i3 (logs you out of your X session) 166 | bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'" 167 | 168 | # resize window (you can also use the mouse for that) 169 | mode "resize" { 170 | # same bindings, but for the arrow keys 171 | bindsym Left resize shrink width 10 px or 10 ppt 172 | bindsym Down resize grow height 10 px or 10 ppt 173 | bindsym Up resize shrink height 10 px or 10 ppt 174 | bindsym Right resize grow width 10 px or 10 ppt 175 | 176 | # back to normal: Enter or Escape 177 | bindsym Return mode "default" 178 | bindsym Escape mode "default" 179 | } 180 | 181 | bindsym $mod+r mode "resize" 182 | 183 | # i3-gaps config inner/outter gap 184 | gaps inner 10 185 | gaps outer 5 186 | 187 | # run polybar 188 | exec_always --no-startup-id $HOME/.config/polybar/launch.sh 189 | # exec_always xautolock -time 10 -locker "i3lock-fancy" 190 | 191 | -------------------------------------------------------------------------------- /.config/mpd/database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CECoffee/Origin/c9a259d77d2d855ee2fe56f5a29425735dc9ca29/.config/mpd/database -------------------------------------------------------------------------------- /.config/mpd/log: -------------------------------------------------------------------------------- 1 | Aug 10 18:41 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 2 | Aug 10 18:41 : exception: Failed to open '/home/fe/.config/mpd/state': No such file or directory 3 | Aug 10 18:41 : update: added /Joan Jett & The Blackhearts - I Hate Myself for Loving You.mp3 4 | Aug 10 18:41 : update: added /The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac 5 | Aug 10 18:41 : update: added /Imagine Dragons - Demons.mp3 6 | Aug 10 18:41 : update: added /Martin Garrix - Animals.mp3 7 | Aug 10 18:41 : update: added /Nigel Stanford _ Catey Shaw - If I Go Down.mp3 8 | Aug 10 18:41 : update: added /Vicetone _ Youngblood Hawke - Landslide.flac 9 | Aug 10 18:41 : update: added /Asher Monroe - Here With You.mp3 10 | Aug 10 18:41 : update: added /ILLENIUM _ Bahari - Crashing.mp3 11 | Aug 10 18:41 : update: added /Austin Mahone _ Rich Homie Quan - Send It.mp3 12 | Aug 10 18:41 : update: added /Axero _ Vexento - Our Road.flac 13 | Aug 10 18:41 : update: added /Imagine Dragons - Natural.flac 14 | Aug 10 18:41 : update: added /ILLENIUM _ Joni Fatora - Sleepwalker.flac 15 | Aug 10 18:41 : update: added /Alan Walker _ Iselin Solheim - Faded.flac 16 | Aug 10 18:41 : update: added /Nigel Stanford - Far Centaurus.mp3 17 | Aug 10 18:41 : update: added /Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3 18 | Aug 10 18:41 : update: added /Joakim Lundell - Waiting For.mp3 19 | Aug 10 18:41 : update: added /ILLENIUM - Fractures.flac 20 | Aug 10 18:41 : avahi: Service 'Music Player @ Hacknet' successfully established. 21 | Aug 10 18:41 : client: [0] opened from 127.0.0.1:35922 22 | Aug 10 18:41 : update: added /Alan Walker _ Gavin James - Tired.flac 23 | Aug 10 18:41 : update: added /Jonas Blue _ Jack & Jack - Rise (Retrovision Remix).mp3 24 | Aug 10 18:41 : update: added /Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac 25 | Aug 10 18:41 : update: added /Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3 26 | Aug 10 18:41 : update: added /Sia - Cheap Thrills.flac 27 | Aug 10 18:41 : update: added /DJ Snake _ Lil Jon - Turn Down For What.flac 28 | Aug 10 18:41 : update: added /Alan Walker - Routine.flac 29 | Aug 10 18:41 : update: added /Alan Walker _ Against the Current _ Mako - Legends Never Die (Alan Walker Remix).flac 30 | Aug 10 18:41 : update: added /Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3 31 | Aug 10 18:41 : update: added /Avicii _ Sandro Cavazza - Without You.flac 32 | Aug 10 18:41 : update: added /Vicetone - United We Dance (Vicetone Edit).mp3 33 | Aug 10 18:41 : update: added /Vicetone - Anywhere I Go.flac 34 | Aug 10 18:41 : update: added /Ed Sheeran - Shape of You.flac 35 | Aug 10 18:41 : update: added /Alok _ Bruno Martini _ Zeeba - Hear Me Now.flac 36 | Aug 10 18:41 : update: added /英雄联盟 - Welcome to Planet Urf.flac 37 | Aug 10 18:41 : update: added /张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac 38 | Aug 10 18:41 : update: added /Steerner _ Martell - Sky (Radio Edit).mp3 39 | Aug 10 18:41 : update: added /Imagine Dragons - Radioactive.mp3 40 | Aug 10 18:41 : update: added /The xx - Intro.flac 41 | Aug 10 18:41 : update: added /英雄联盟 - Legends Never Die.flac 42 | Aug 10 18:41 : update: added /Alan Walker - Spectre.flac 43 | Aug 10 18:41 : update: added /Katie Sky - Monsters.flac 44 | Aug 10 18:41 : update: added /Vicetone _ Meron Ryan - Walk Thru Fire.flac 45 | Aug 10 18:41 : update: added /Tungevaag & Raaban - Samsara.flac 46 | Aug 10 18:41 : update: added /Nigel Stanford - Cymatics.mp3 47 | Aug 10 18:41 : update: added /K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac 48 | Aug 10 18:41 : update: added /Alan Walker _ Sorana - Lost Control.mp3 49 | Aug 10 18:41 : update: added /Vicetone _ Cozi Zuehlsdorff - Way Back.flac 50 | Aug 10 18:41 : update: added /ZAYN - LIKE I WOULD.flac 51 | Aug 10 18:41 : update: added /Avicii _ Aloe Blacc - SOS.mp3 52 | Aug 10 18:41 : update: added /Troye Sivan - WILD.flac 53 | Aug 10 18:41 : update: added /CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac 54 | Aug 10 18:41 : update: added /Vicetone _ Popeska _ Luciana - The New Kings.flac 55 | Aug 10 18:41 : update: added /Vicetone _ Matt Wertz - Fences.flac 56 | Aug 10 18:41 : update: added /Alan Walker _ Steve Aoki _ ISAK _ Omar Noir - Lonely.mp3 57 | Aug 10 18:41 : update: added /Sia - Move Your Body.flac 58 | Aug 10 18:41 : update: added /TheFatRat _ Laura Brehm - Monody (Radio Edit).mp3 59 | Aug 10 18:41 : update: added /Vinai _ SCNDL - Frontier (Extended Mix).mp3 60 | Aug 10 18:41 : update: added /Vicetone _ Haley Reinhart - Something Strange.mp3 61 | Aug 10 18:41 : update: added /The Chainsmokers _ Coldplay - Something Just Like This.flac 62 | Aug 10 18:41 : update: added /OneRepublic - Counting Stars.flac 63 | Aug 10 18:41 : update: added /ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3 64 | Aug 10 18:41 : update: added /Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac 65 | Aug 10 18:41 : update: added /Vicetone - Nothing Stopping Me (Radio Edit).mp3 66 | Aug 10 18:41 : update: added /Selena Gomez _ Marshmello - Wolves.flac 67 | Aug 10 18:41 : update: added /满舒克 _ MuSik I _ 廖伟珊 - My Heart Will Go On.flac 68 | Aug 10 18:41 : update: added /Imagine Dragons _ Lil Wayne - Believer.mp3 69 | Aug 10 18:41 : update: added /The Rescues - Can't Stand The Rain (Album Version).flac 70 | Aug 10 18:41 : update: added /Vicetone - Starboy (Vicetone Remix).mp3 71 | Aug 10 18:41 : update: added /Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3 72 | Aug 10 18:41 : update: added /街道办GDC _ 欧阳耀莹 - 春娇与志明.flac 73 | Aug 10 18:41 : update: added /Steve Aoki _ Lauren Jauregui - All Night (Alan Walker Remix).mp3 74 | Aug 10 18:41 : update: added /Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac 75 | Aug 10 18:41 : update: added /Zella Day - East of Eden.flac 76 | Aug 10 18:41 : client: [1] opened from 127.0.0.1:35926 77 | Aug 10 18:41 : client: [1] closed 78 | Aug 10 18:41 : client: [0] closed 79 | Aug 10 18:41 : client: [2] opened from 127.0.0.1:35930 80 | Aug 10 18:45 : client: [2] closed 81 | Aug 10 18:45 : client: [3] opened from 127.0.0.1:35932 82 | Aug 10 18:51 : client: [3] closed 83 | Aug 10 18:51 : client: [4] opened from 127.0.0.1:35938 84 | Aug 10 18:52 : client: [4] closed 85 | Aug 10 18:52 : client: [5] opened from 127.0.0.1:35940 86 | Aug 10 18:55 : client: [5] closed 87 | Aug 10 18:55 : client: [6] opened from 127.0.0.1:35942 88 | Aug 10 18:56 : client: [6] closed 89 | Aug 10 18:56 : client: [7] opened from 127.0.0.1:35944 90 | Aug 10 19:31 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 91 | Aug 10 19:31 : avahi: Service 'Music Player @ Hacknet' successfully established. 92 | Aug 10 19:31 : client: [0] opened from 127.0.0.1:35842 93 | Aug 10 19:31 : client: [0] closed 94 | Aug 10 19:32 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 95 | Aug 10 19:33 : avahi: Service 'Music Player @ Hacknet' successfully established. 96 | Aug 10 19:36 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 97 | Aug 10 19:36 : avahi: Service 'Music Player @ Hacknet' successfully established. 98 | Aug 10 19:36 : client: [0] opened from 127.0.0.1:36142 99 | Aug 10 19:37 : client: [0] closed 100 | Aug 10 19:43 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 101 | Aug 10 19:43 : avahi: Service 'Music Player @ Hacknet' successfully established. 102 | Aug 10 19:43 : client: [0] opened from 127.0.0.1:36564 103 | Aug 10 19:43 : client: [0] closed 104 | Aug 10 19:44 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 105 | Aug 10 19:44 : avahi: Service 'Music Player @ Hacknet' successfully established. 106 | Aug 10 19:44 : client: [0] opened from 127.0.0.1:36584 107 | Aug 10 19:44 : client: [0] closed 108 | Aug 10 19:44 : client: [1] opened from 127.0.0.1:36600 109 | Aug 10 19:48 : client: [1] closed 110 | Aug 10 19:48 : client: [2] opened from 127.0.0.1:36710 111 | Aug 10 19:48 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 112 | Aug 10 19:52 : alsa_output: Decoder is too slow; playing silence to avoid xrun 113 | Aug 10 19:52 : player: played "街道办GDC _ 欧阳耀莹 - 春娇与志明.flac" 114 | Aug 10 19:56 : player: played "英雄联盟 - Legends Never Die.flac" 115 | Aug 10 19:58 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 116 | Aug 10 19:58 : alsa_output: Decoder is too slow; playing silence to avoid xrun 117 | Aug 10 20:01 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 118 | Aug 10 20:01 : alsa_output: Decoder is too slow; playing silence to avoid xrun 119 | Aug 10 20:03 : client: [3] opened from 127.0.0.1:37154 120 | Aug 10 20:03 : client: [4] opened from 127.0.0.1:37176 121 | Aug 10 20:03 : client: [4] closed 122 | Aug 10 20:03 : client: [5] opened from 127.0.0.1:37178 123 | Aug 10 20:03 : client: [5] closed 124 | Aug 10 20:03 : client: [3] closed 125 | Aug 10 20:04 : player: played "Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac" 126 | Aug 10 20:05 : client: [6] opened from 127.0.0.1:37226 127 | Aug 10 20:05 : client: [6] closed 128 | Aug 10 20:05 : client: [7] opened from 127.0.0.1:37242 129 | Aug 10 20:06 : client: [7] closed 130 | Aug 10 20:06 : client: [8] opened from 127.0.0.1:37258 131 | Aug 10 20:08 : player: played "Alan Walker _ Gavin James - Tired.flac" 132 | Aug 10 20:08 : client: [8] closed 133 | Aug 10 20:08 : client: [9] opened from 127.0.0.1:37314 134 | Aug 10 20:11 : player: played "Alan Walker _ Iselin Solheim - Faded.flac" 135 | Aug 10 20:14 : player: played "Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3" 136 | Aug 10 20:14 : alsa_output: Decoder is too slow; playing silence to avoid xrun 137 | Aug 10 20:20 : player: played "CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac" 138 | Aug 10 20:24 : client: [10] opened from 127.0.0.1:38250 139 | Aug 10 20:24 : client: [10] closed 140 | Aug 10 20:24 : client: [11] opened from 127.0.0.1:38252 141 | Aug 10 20:24 : client: [11] closed 142 | Aug 10 20:24 : client: [12] opened from 127.0.0.1:38256 143 | Aug 10 20:24 : client: [12] closed 144 | Aug 10 20:24 : client: [13] opened from 127.0.0.1:38258 145 | Aug 10 20:24 : client: [13] closed 146 | Aug 10 20:24 : client: [14] opened from 127.0.0.1:38260 147 | Aug 10 20:24 : client: [14] closed 148 | Aug 10 20:27 : player: played "Imagine Dragons _ Lil Wayne - Believer.mp3" 149 | Aug 10 20:28 : client: [15] opened from 127.0.0.1:38526 150 | Aug 10 20:28 : client: [15] closed 151 | Aug 10 20:28 : client: [16] opened from 127.0.0.1:38532 152 | Aug 10 20:28 : client: [16] closed 153 | Aug 10 20:30 : player: played "Imagine Dragons - Demons.mp3" 154 | Aug 10 20:33 : player: played "Imagine Dragons - Natural.flac" 155 | Aug 10 20:34 : client: [9] closed 156 | Aug 10 20:34 : client: [17] opened from 127.0.0.1:38692 157 | Aug 10 20:35 : client: [17] closed 158 | Aug 10 20:37 : player: played "Imagine Dragons - Radioactive.mp3" 159 | Aug 10 20:37 : client: [18] opened from 127.0.0.1:38790 160 | Aug 10 20:40 : player: played "Joakim Lundell - Waiting For.mp3" 161 | Aug 10 20:43 : player: played "K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac" 162 | Aug 10 20:47 : player: played "OneRepublic - Counting Stars.flac" 163 | Aug 10 20:48 : client: [18] closed 164 | Aug 10 20:50 : client: [19] opened from 127.0.0.1:39260 165 | Aug 10 20:51 : player: played "Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3" 166 | Aug 10 20:51 : alsa_output: Decoder is too slow; playing silence to avoid xrun 167 | Aug 10 20:54 : player: played "Selena Gomez _ Marshmello - Wolves.flac" 168 | Aug 10 20:56 : client: [20] opened from 127.0.0.1:39466 169 | Aug 10 20:56 : client: [20] closed 170 | Aug 10 20:56 : client: [21] opened from 127.0.0.1:39468 171 | Aug 10 20:56 : client: [21] closed 172 | Aug 10 20:57 : player: played "Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3" 173 | Aug 10 20:57 : client: [19] closed 174 | Aug 10 20:57 : client: [22] opened from 127.0.0.1:39514 175 | Aug 10 21:01 : player: played "The Chainsmokers _ Coldplay - Something Just Like This.flac" 176 | Aug 10 21:04 : player: played "The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac" 177 | Aug 10 21:04 : alsa_output: Decoder is too slow; playing silence to avoid xrun 178 | Aug 10 21:08 : player: played "The Rescues - Can't Stand The Rain (Album Version).flac" 179 | Aug 10 21:11 : player: played "Troye Sivan - WILD.flac" 180 | Aug 10 21:14 : player: played "Vicetone _ Cozi Zuehlsdorff - Way Back.flac" 181 | Aug 10 21:14 : alsa_output: Decoder is too slow; playing silence to avoid xrun 182 | Aug 10 21:18 : player: played "Vicetone _ Haley Reinhart - Something Strange.mp3" 183 | Aug 10 21:18 : alsa_output: Decoder is too slow; playing silence to avoid xrun 184 | Aug 10 21:18 : client: [23] opened from 127.0.0.1:40116 185 | Aug 10 21:18 : client: [23] closed 186 | Aug 10 21:21 : player: played "Vicetone _ Matt Wertz - Fences.flac" 187 | Aug 10 21:21 : alsa_output: Decoder is too slow; playing silence to avoid xrun 188 | Aug 10 21:24 : player: played "Vicetone _ Meron Ryan - Walk Thru Fire.flac" 189 | Aug 10 21:24 : alsa_output: Decoder is too slow; playing silence to avoid xrun 190 | Aug 10 21:27 : client: [22] closed 191 | Aug 10 21:27 : client: [24] opened from 127.0.0.1:40352 192 | Aug 10 21:28 : client: [24] closed 193 | Aug 10 21:28 : client: [25] opened from 127.0.0.1:40388 194 | Aug 10 21:28 : client: [26] opened from 127.0.0.1:40398 195 | Aug 10 21:28 : client: [26] closed 196 | Aug 10 21:28 : client: [27] opened from 127.0.0.1:40402 197 | Aug 10 21:28 : client: [27] closed 198 | Aug 10 21:28 : player: played "Vicetone _ Popeska _ Luciana - The New Kings.flac" 199 | Aug 10 21:32 : player: played "Vicetone _ Youngblood Hawke - Landslide.flac" 200 | Aug 10 21:35 : player: played "Vicetone - Anywhere I Go.flac" 201 | Aug 10 21:35 : alsa_output: Decoder is too slow; playing silence to avoid xrun 202 | Aug 10 21:39 : player: played "Vicetone - Nothing Stopping Me (Radio Edit).mp3" 203 | Aug 10 21:42 : client: [25] closed 204 | Aug 10 21:42 : client: [28] opened from 127.0.0.1:40800 205 | Aug 10 21:42 : player: played "Vicetone - Starboy (Vicetone Remix).mp3" 206 | Aug 10 21:43 : client: [28] closed 207 | Aug 10 21:43 : client: [29] opened from 127.0.0.1:40836 208 | Aug 10 21:43 : client: [30] opened from 127.0.0.1:40856 209 | Aug 10 21:43 : client: [30] closed 210 | Aug 10 21:43 : client: [2] closed 211 | Aug 10 21:51 : client: [29] closed 212 | Aug 10 21:51 : client: [31] opened from 127.0.0.1:42058 213 | Aug 10 21:54 : client: [31] closed 214 | Aug 10 21:54 : client: [32] opened from 127.0.0.1:42248 215 | Aug 10 21:59 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 216 | Aug 10 21:59 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 217 | Aug 10 21:59 : client: [0] opened from 127.0.0.1:42584 218 | Aug 10 21:59 : avahi: Service 'Music Player @ Hacknet' successfully established. 219 | Aug 10 22:00 : client: [0] closed 220 | Aug 10 22:00 : client: [1] opened from 127.0.0.1:42604 221 | Aug 10 22:04 : client: [2] opened from 127.0.0.1:42608 222 | Aug 10 22:04 : client: [2] closed 223 | Aug 10 22:06 : client: [3] opened from 127.0.0.1:42612 224 | Aug 10 22:06 : client: [3] closed 225 | Aug 10 22:06 : client: [4] opened from 127.0.0.1:42616 226 | Aug 10 22:08 : player: played "Vicetone - United We Dance (Vicetone Edit).mp3" 227 | Aug 10 22:08 : client: [5] opened from 127.0.0.1:42624 228 | Aug 10 22:08 : client: [5] closed 229 | Aug 10 22:08 : client: [6] opened from 127.0.0.1:42628 230 | Aug 10 22:08 : client: [6] closed 231 | Aug 10 22:08 : client: [7] opened from 127.0.0.1:42632 232 | Aug 10 22:08 : client: [7] closed 233 | Aug 10 22:11 : player: played "Zella Day - East of Eden.flac" 234 | Aug 10 22:11 : client: [8] opened from 127.0.0.1:42636 235 | Aug 10 22:11 : client: [8] closed 236 | Aug 10 22:11 : client: [9] opened from 127.0.0.1:42640 237 | Aug 10 22:11 : client: [9] closed 238 | Aug 10 22:21 : client: [10] opened from 127.0.0.1:42666 239 | Aug 10 22:21 : client: [10] closed 240 | Aug 10 22:24 : player: played "街道办GDC _ 欧阳耀莹 - 春娇与志明.flac" 241 | Aug 10 22:28 : player: played "英雄联盟 - Legends Never Die.flac" 242 | Aug 10 22:31 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 243 | Aug 10 22:31 : alsa_output: Decoder is too slow; playing silence to avoid xrun 244 | Aug 10 22:33 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 245 | Aug 10 22:33 : alsa_output: Decoder is too slow; playing silence to avoid xrun 246 | Aug 10 22:37 : player: played "Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac" 247 | Aug 10 22:40 : player: played "Alan Walker _ Gavin James - Tired.flac" 248 | Aug 10 22:43 : player: played "Alan Walker _ Iselin Solheim - Faded.flac" 249 | Aug 10 22:47 : player: played "Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3" 250 | Aug 10 22:47 : alsa_output: Decoder is too slow; playing silence to avoid xrun 251 | Aug 10 22:50 : player: played "Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac" 252 | Aug 10 22:53 : player: played "Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac" 253 | Aug 10 22:56 : client: [11] opened from 127.0.0.1:44040 254 | Aug 10 22:56 : client: [11] closed 255 | Aug 10 23:10 : client: [1] closed 256 | Aug 10 23:10 : client: [12] opened from 127.0.0.1:44472 257 | Aug 10 23:14 : client: [4] closed 258 | Aug 10 23:14 : player: played "Alan Walker _ Sorana - Lost Control.mp3" 259 | Aug 11 08:11 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 260 | Aug 11 08:11 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 261 | Aug 11 08:11 : client: [0] opened from 127.0.0.1:48594 262 | Aug 11 08:11 : avahi: Service 'Music Player @ Hacknet' successfully established. 263 | Aug 11 08:12 : client: [1] opened from 127.0.0.1:48596 264 | Aug 11 08:12 : client: [1] closed 265 | Aug 11 08:12 : player: played "Alan Walker _ Sorana - Lost Control.mp3" 266 | Aug 11 08:15 : player: played "Alan Walker - Routine.flac" 267 | Aug 11 08:19 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 268 | Aug 11 08:19 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 269 | Aug 11 08:19 : client: [0] opened from 127.0.0.1:48628 270 | Aug 11 08:19 : avahi: Service 'Music Player @ Hacknet' successfully established. 271 | Aug 11 08:21 : client: [0] closed 272 | Aug 11 08:21 : client: [1] opened from 127.0.0.1:48648 273 | Aug 11 08:22 : player: played "Alan Walker - Spectre.flac" 274 | Aug 11 08:22 : client: [2] opened from 127.0.0.1:48652 275 | Aug 11 08:23 : client: [3] opened from 127.0.0.1:48656 276 | Aug 11 08:23 : client: [3] closed 277 | Aug 11 08:23 : client: [4] opened from 127.0.0.1:48660 278 | Aug 11 08:23 : client: [4] closed 279 | Aug 11 08:23 : client: [5] opened from 127.0.0.1:48664 280 | Aug 11 08:23 : client: [5] closed 281 | Aug 11 08:25 : player: played "Avicii _ Aloe Blacc - SOS.mp3" 282 | Aug 11 08:30 : player: played "Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3" 283 | Aug 11 08:33 : player: played "Avicii _ Sandro Cavazza - Without You.flac" 284 | Aug 11 08:37 : player: played "Axero _ Vexento - Our Road.flac" 285 | Aug 11 08:40 : player: played "CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac" 286 | Aug 11 08:44 : player: played "Ed Sheeran - Shape of You.flac" 287 | Aug 11 08:44 : alsa_output: Decoder is too slow; playing silence to avoid xrun 288 | Aug 11 08:46 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 289 | Aug 11 08:46 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 290 | Aug 11 08:46 : client: [0] opened from 127.0.0.1:48678 291 | Aug 11 08:46 : avahi: Service 'Music Player @ Hacknet' successfully established. 292 | Aug 11 08:47 : client: [1] opened from 127.0.0.1:48698 293 | Aug 11 08:47 : client: [0] closed 294 | Aug 11 08:47 : client: [2] opened from 127.0.0.1:48700 295 | Aug 11 08:48 : client: [2] closed 296 | Aug 11 08:48 : client: [3] opened from 127.0.0.1:48702 297 | Aug 11 08:49 : client: [3] closed 298 | Aug 11 08:49 : client: [4] opened from 127.0.0.1:48704 299 | Aug 11 08:50 : player: played "ILLENIUM _ Bahari - Crashing.mp3" 300 | Aug 11 08:52 : client: [4] closed 301 | Aug 11 08:52 : client: [5] opened from 127.0.0.1:48708 302 | Aug 11 08:53 : client: [5] closed 303 | Aug 11 08:53 : client: [6] opened from 127.0.0.1:48710 304 | Aug 11 08:53 : player: played "ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3" 305 | Aug 11 08:53 : alsa_output: Decoder is too slow; playing silence to avoid xrun 306 | Aug 11 08:58 : player: played "ILLENIUM _ Joni Fatora - Sleepwalker.flac" 307 | Aug 11 09:02 : player: played "ILLENIUM - Fractures.flac" 308 | Aug 11 09:05 : player: played "Imagine Dragons _ Lil Wayne - Believer.mp3" 309 | Aug 11 09:08 : player: played "Imagine Dragons - Demons.mp3" 310 | Aug 11 09:11 : player: played "Imagine Dragons - Natural.flac" 311 | Aug 11 09:15 : player: played "Imagine Dragons - Radioactive.mp3" 312 | Aug 11 09:18 : player: played "Joakim Lundell - Waiting For.mp3" 313 | Aug 11 09:21 : player: played "K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac" 314 | Aug 11 09:25 : player: played "OneRepublic - Counting Stars.flac" 315 | Aug 11 09:29 : player: played "Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3" 316 | Aug 11 09:29 : alsa_output: Decoder is too slow; playing silence to avoid xrun 317 | Aug 11 09:32 : player: played "Selena Gomez _ Marshmello - Wolves.flac" 318 | Aug 11 09:32 : alsa_output: Decoder is too slow; playing silence to avoid xrun 319 | Aug 11 09:35 : player: played "Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3" 320 | Aug 11 09:39 : player: played "The Chainsmokers _ Coldplay - Something Just Like This.flac" 321 | Aug 11 09:42 : player: played "The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac" 322 | Aug 11 09:42 : alsa_output: Decoder is too slow; playing silence to avoid xrun 323 | Aug 11 09:46 : player: played "The Rescues - Can't Stand The Rain (Album Version).flac" 324 | Aug 11 09:49 : player: played "Troye Sivan - WILD.flac" 325 | Aug 11 09:49 : client: [7] opened from 127.0.0.1:49204 326 | Aug 11 09:49 : client: [7] closed 327 | Aug 11 09:51 : client: [8] opened from 127.0.0.1:49264 328 | Aug 11 09:51 : client: [8] closed 329 | Aug 11 09:54 : player: played "Vicetone _ Cozi Zuehlsdorff - Way Back.flac" 330 | Aug 11 09:54 : alsa_output: Decoder is too slow; playing silence to avoid xrun 331 | Aug 11 09:57 : player: played "Vicetone _ Haley Reinhart - Something Strange.mp3" 332 | Aug 11 09:57 : alsa_output: Decoder is too slow; playing silence to avoid xrun 333 | Aug 11 10:01 : player: played "Vicetone _ Matt Wertz - Fences.flac" 334 | Aug 11 10:01 : alsa_output: Decoder is too slow; playing silence to avoid xrun 335 | Aug 11 10:04 : player: played "Vicetone _ Meron Ryan - Walk Thru Fire.flac" 336 | Aug 11 10:04 : alsa_output: Decoder is too slow; playing silence to avoid xrun 337 | Aug 11 10:08 : player: played "Vicetone _ Popeska _ Luciana - The New Kings.flac" 338 | Aug 11 10:11 : client: [9] opened from 127.0.0.1:50094 339 | Aug 11 10:11 : client: [9] closed 340 | Aug 11 10:11 : client: [1] closed 341 | Aug 11 10:27 : client: [6] closed 342 | Aug 11 10:27 : client: [10] opened from 127.0.0.1:50822 343 | Aug 11 10:29 : client: [10] closed 344 | Aug 11 10:29 : client: [11] opened from 127.0.0.1:50890 345 | Aug 11 10:29 : client: [11] closed 346 | Aug 11 10:29 : client: [12] opened from 127.0.0.1:50908 347 | Aug 11 10:30 : client: [12] closed 348 | Aug 11 10:30 : client: [13] opened from 127.0.0.1:50928 349 | Aug 11 10:31 : client: [13] closed 350 | Aug 11 10:31 : client: [14] opened from 127.0.0.1:50954 351 | Aug 11 10:31 : client: [14] closed 352 | Aug 11 10:31 : client: [15] opened from 127.0.0.1:50972 353 | Aug 11 10:31 : client: [15] closed 354 | Aug 11 10:31 : client: [16] opened from 127.0.0.1:50982 355 | Aug 11 10:35 : client: [16] closed 356 | Aug 11 10:35 : client: [17] opened from 127.0.0.1:51086 357 | Aug 11 10:35 : client: [17] closed 358 | Aug 11 10:35 : client: [18] opened from 127.0.0.1:51104 359 | Aug 11 10:36 : client: [18] closed 360 | Aug 11 10:36 : client: [19] opened from 127.0.0.1:51120 361 | Aug 11 10:36 : client: [19] closed 362 | Aug 11 10:36 : client: [20] opened from 127.0.0.1:51144 363 | Aug 11 10:37 : client: [20] closed 364 | Aug 11 10:37 : client: [21] opened from 127.0.0.1:51158 365 | Aug 11 10:37 : client: [21] closed 366 | Aug 11 10:37 : client: [22] opened from 127.0.0.1:51166 367 | Aug 11 10:38 : client: [22] closed 368 | Aug 11 10:38 : client: [23] opened from 127.0.0.1:51184 369 | Aug 11 10:38 : client: [23] closed 370 | Aug 11 10:38 : client: [24] opened from 127.0.0.1:51204 371 | Aug 11 10:41 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 372 | Aug 11 10:41 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 373 | Aug 11 10:41 : client: [0] opened from 127.0.0.1:51288 374 | Aug 11 10:41 : avahi: Service 'Music Player @ Hacknet' successfully established. 375 | Aug 11 10:42 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 376 | Aug 11 10:42 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 377 | Aug 11 10:42 : client: [0] opened from 127.0.0.1:51312 378 | Aug 11 10:42 : avahi: Service 'Music Player @ Hacknet' successfully established. 379 | Aug 11 10:43 : client: [1] opened from 127.0.0.1:51326 380 | Aug 11 10:43 : client: [1] closed 381 | Aug 11 10:43 : player: played "Vicetone _ Youngblood Hawke - Landslide.flac" 382 | Aug 11 10:45 : player: played "Vicetone - Anywhere I Go.flac" 383 | Aug 11 15:46 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 384 | Aug 11 15:46 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 385 | Aug 11 15:46 : avahi: Service 'Music Player @ Hacknet' successfully established. 386 | Aug 11 15:46 : client: [0] opened from 127.0.0.1:43340 387 | Aug 11 15:47 : client: [1] opened from 127.0.0.1:43344 388 | Aug 11 15:48 : player: played "Vicetone - Anywhere I Go.flac" 389 | Aug 11 15:51 : player: played "Vicetone - Nothing Stopping Me (Radio Edit).mp3" 390 | Aug 11 15:55 : player: played "Vicetone - Starboy (Vicetone Remix).mp3" 391 | Aug 11 15:59 : player: played "Vicetone - United We Dance (Vicetone Edit).mp3" 392 | Aug 11 16:02 : player: played "Zella Day - East of Eden.flac" 393 | Aug 11 16:05 : player: played "街道办GDC _ 欧阳耀莹 - 春娇与志明.flac" 394 | Aug 11 16:05 : alsa_output: Decoder is too slow; playing silence to avoid xrun 395 | Aug 11 16:09 : player: played "英雄联盟 - Legends Never Die.flac" 396 | Aug 11 16:10 : client: [2] opened from 127.0.0.1:44260 397 | Aug 11 16:10 : client: [2] closed 398 | Aug 11 16:12 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 399 | Aug 11 16:13 : client: [3] opened from 127.0.0.1:44406 400 | Aug 11 16:13 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 401 | Aug 11 16:13 : client: [3] closed 402 | Aug 11 16:13 : client: [4] opened from 127.0.0.1:44410 403 | Aug 11 16:13 : client: [4] closed 404 | Aug 11 16:15 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 405 | Aug 11 16:15 : client: [5] opened from 127.0.0.1:44490 406 | Aug 11 16:15 : client: [5] closed 407 | Aug 11 16:17 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 408 | Aug 11 16:17 : alsa_output: Decoder is too slow; playing silence to avoid xrun 409 | Aug 11 16:20 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 410 | Aug 11 16:20 : alsa_output: Decoder is too slow; playing silence to avoid xrun 411 | Aug 11 16:23 : player: played "Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac" 412 | Aug 11 16:26 : player: played "Alan Walker _ Gavin James - Tired.flac" 413 | Aug 11 16:30 : player: played "Alan Walker _ Iselin Solheim - Faded.flac" 414 | Aug 11 16:33 : player: played "Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3" 415 | Aug 11 16:33 : alsa_output: Decoder is too slow; playing silence to avoid xrun 416 | Aug 11 16:35 : client: [0] closed 417 | Aug 11 16:35 : client: [6] opened from 127.0.0.1:45404 418 | Aug 11 16:36 : client: [6] closed 419 | Aug 11 16:36 : client: [7] opened from 127.0.0.1:45406 420 | Aug 11 16:37 : player: played "Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac" 421 | Aug 11 16:40 : player: played "Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac" 422 | Aug 11 16:43 : client: [7] closed 423 | Aug 11 16:43 : client: [8] opened from 127.0.0.1:45416 424 | Aug 11 16:44 : player: played "Alan Walker _ Sorana - Lost Control.mp3" 425 | Aug 11 16:44 : alsa_output: Decoder is too slow; playing silence to avoid xrun 426 | Aug 11 16:46 : client: [9] opened from 127.0.0.1:45556 427 | Aug 11 16:46 : client: [9] closed 428 | Aug 11 16:46 : client: [10] opened from 127.0.0.1:45560 429 | Aug 11 16:46 : client: [10] closed 430 | Aug 11 16:46 : client: [11] opened from 127.0.0.1:45566 431 | Aug 11 16:46 : client: [11] closed 432 | Aug 11 16:46 : client: [12] opened from 127.0.0.1:45570 433 | Aug 11 16:46 : client: [12] closed 434 | Aug 11 16:49 : player: played "Austin Mahone _ Rich Homie Quan - Send It.mp3" 435 | Aug 11 16:51 : client: [13] opened from 127.0.0.1:45850 436 | Aug 11 16:51 : client: [13] closed 437 | Aug 11 16:51 : client: [14] opened from 127.0.0.1:45854 438 | Aug 11 16:51 : client: [14] closed 439 | Aug 11 16:51 : player: played "Avicii _ Aloe Blacc - SOS.mp3" 440 | Aug 11 16:56 : player: played "Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3" 441 | Aug 11 16:56 : alsa_output: Decoder is too slow; playing silence to avoid xrun 442 | Aug 11 16:59 : player: played "Avicii _ Sandro Cavazza - Without You.flac" 443 | Aug 11 16:59 : client: [8] closed 444 | Aug 11 16:59 : client: [15] opened from 127.0.0.1:46128 445 | Aug 11 17:02 : client: [15] closed 446 | Aug 11 17:02 : client: [16] opened from 127.0.0.1:46214 447 | Aug 11 17:03 : client: [16] closed 448 | Aug 11 17:03 : player: played "Axero _ Vexento - Our Road.flac" 449 | Aug 11 17:05 : client: [17] opened from 127.0.0.1:46298 450 | Aug 11 17:05 : client: [17] closed 451 | Aug 11 17:05 : client: [18] opened from 127.0.0.1:46304 452 | Aug 11 17:07 : player: played "CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac" 453 | Aug 11 17:10 : player: played "Ed Sheeran - Shape of You.flac" 454 | Aug 11 17:10 : alsa_output: Decoder is too slow; playing silence to avoid xrun 455 | Aug 11 17:14 : player: played "ILLENIUM _ Bahari - Crashing.mp3" 456 | Aug 11 17:16 : client: [19] opened from 127.0.0.1:46778 457 | Aug 11 17:16 : client: [19] closed 458 | Aug 11 17:31 : client: [20] opened from 127.0.0.1:47184 459 | Aug 11 17:31 : client: [20] closed 460 | Aug 11 17:32 : player: played "ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3" 461 | Aug 11 17:32 : alsa_output: Decoder is too slow; playing silence to avoid xrun 462 | Aug 11 17:37 : player: played "ILLENIUM _ Joni Fatora - Sleepwalker.flac" 463 | Aug 11 17:38 : client: [18] closed 464 | Aug 11 17:38 : client: [21] opened from 127.0.0.1:47494 465 | Aug 11 17:41 : player: played "ILLENIUM - Fractures.flac" 466 | Aug 11 17:41 : client: [21] closed 467 | Aug 11 17:41 : client: [22] opened from 127.0.0.1:47618 468 | Aug 11 17:44 : player: played "Imagine Dragons _ Lil Wayne - Believer.mp3" 469 | Aug 11 17:47 : player: played "Imagine Dragons - Demons.mp3" 470 | Aug 11 17:49 : client: [22] closed 471 | Aug 11 17:49 : client: [23] opened from 127.0.0.1:47858 472 | Aug 11 17:50 : player: played "Imagine Dragons - Natural.flac" 473 | Aug 11 17:54 : player: played "Imagine Dragons - Radioactive.mp3" 474 | Aug 11 17:57 : player: played "Joakim Lundell - Waiting For.mp3" 475 | Aug 11 18:00 : player: played "K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac" 476 | Aug 11 18:04 : player: played "OneRepublic - Counting Stars.flac" 477 | Aug 11 18:08 : player: played "Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3" 478 | Aug 11 18:08 : alsa_output: Decoder is too slow; playing silence to avoid xrun 479 | Aug 11 18:11 : player: played "Selena Gomez _ Marshmello - Wolves.flac" 480 | Aug 11 18:11 : alsa_output: Decoder is too slow; playing silence to avoid xrun 481 | Aug 11 18:12 : client: [23] closed 482 | Aug 11 18:12 : client: [24] opened from 127.0.0.1:48694 483 | Aug 11 18:13 : client: [24] closed 484 | Aug 11 18:13 : client: [25] opened from 127.0.0.1:48740 485 | Aug 11 18:14 : player: played "Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3" 486 | Aug 11 18:14 : client: [25] closed 487 | Aug 11 18:14 : client: [26] opened from 127.0.0.1:48770 488 | Aug 11 18:15 : client: [26] closed 489 | Aug 11 18:15 : client: [27] opened from 127.0.0.1:48804 490 | Aug 11 18:16 : client: [27] closed 491 | Aug 11 18:18 : client: [28] opened from 127.0.0.1:48874 492 | Aug 11 18:18 : player: played "The Chainsmokers _ Coldplay - Something Just Like This.flac" 493 | Aug 11 18:19 : client: [28] closed 494 | Aug 11 18:19 : client: [29] opened from 127.0.0.1:48906 495 | Aug 11 18:21 : client: [29] closed 496 | Aug 11 18:21 : client: [30] opened from 127.0.0.1:48966 497 | Aug 11 18:21 : player: played "The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac" 498 | Aug 11 18:21 : alsa_output: Decoder is too slow; playing silence to avoid xrun 499 | Aug 11 18:25 : player: played "The Rescues - Can't Stand The Rain (Album Version).flac" 500 | Aug 11 18:27 : client: [30] closed 501 | Aug 11 18:27 : client: [31] opened from 127.0.0.1:49142 502 | Aug 11 18:28 : player: played "Troye Sivan - WILD.flac" 503 | Aug 11 18:31 : player: played "Vicetone _ Cozi Zuehlsdorff - Way Back.flac" 504 | Aug 11 18:31 : alsa_output: Decoder is too slow; playing silence to avoid xrun 505 | Aug 11 18:35 : player: played "Vicetone _ Haley Reinhart - Something Strange.mp3" 506 | Aug 11 18:35 : alsa_output: Decoder is too slow; playing silence to avoid xrun 507 | Aug 11 18:38 : player: played "Vicetone _ Matt Wertz - Fences.flac" 508 | Aug 11 18:38 : alsa_output: Decoder is too slow; playing silence to avoid xrun 509 | Aug 11 18:41 : player: played "Vicetone _ Meron Ryan - Walk Thru Fire.flac" 510 | Aug 11 18:41 : alsa_output: Decoder is too slow; playing silence to avoid xrun 511 | Aug 11 18:46 : player: played "Vicetone _ Youngblood Hawke - Landslide.flac" 512 | Aug 11 18:49 : player: played "Vicetone - Anywhere I Go.flac" 513 | Aug 11 18:53 : player: played "Vicetone - Nothing Stopping Me (Radio Edit).mp3" 514 | Aug 11 18:57 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 515 | Aug 11 18:57 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 516 | Aug 11 18:57 : client: [0] opened from 127.0.0.1:50144 517 | Aug 11 18:57 : avahi: Service 'Music Player @ Hacknet' successfully established. 518 | Aug 11 18:57 : client: [1] opened from 127.0.0.1:50164 519 | Aug 11 18:58 : player: played "Vicetone - Starboy (Vicetone Remix).mp3" 520 | Aug 11 19:00 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 521 | Aug 11 19:00 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 522 | Aug 11 19:00 : client: [0] opened from 127.0.0.1:44216 523 | Aug 11 19:00 : avahi: Service 'Music Player @ Hacknet' successfully established. 524 | Aug 11 19:01 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 525 | Aug 11 19:01 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 526 | Aug 11 19:01 : client: [0] opened from 127.0.0.1:44234 527 | Aug 11 19:01 : avahi: Service 'Music Player @ Hacknet' successfully established. 528 | Aug 11 19:02 : player: played "Vicetone - Starboy (Vicetone Remix).mp3" 529 | Aug 11 19:06 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 530 | Aug 11 19:06 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 531 | Aug 11 19:06 : client: [0] opened from 127.0.0.1:33550 532 | Aug 11 19:06 : avahi: Service 'Music Player @ Hacknet' successfully established. 533 | Aug 11 19:07 : client: [1] opened from 127.0.0.1:33552 534 | Aug 11 19:07 : client: [1] closed 535 | Aug 11 19:07 : client: [2] opened from 127.0.0.1:33554 536 | Aug 11 19:07 : client: [2] closed 537 | Aug 11 19:07 : player: played "Vicetone - Starboy (Vicetone Remix).mp3" 538 | Aug 11 19:08 : client: [3] opened from 127.0.0.1:33562 539 | Aug 11 19:08 : player: played "Vicetone - United We Dance (Vicetone Edit).mp3" 540 | Aug 12 10:38 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 541 | Aug 12 10:38 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 542 | Aug 12 10:38 : avahi: Service 'Music Player @ Hacknet' successfully established. 543 | Aug 12 10:38 : client: [0] opened from 127.0.0.1:46430 544 | Aug 12 10:42 : player: played "Vicetone - United We Dance (Vicetone Edit).mp3" 545 | Aug 12 10:42 : alsa_output: Decoder is too slow; playing silence to avoid xrun 546 | Aug 12 10:44 : player: played "Zella Day - East of Eden.flac" 547 | Aug 12 10:44 : exception: Failed to play on "pcm" (alsa): snd_pcm_poll_descriptors_revents() failed: Input/output error 548 | Aug 12 10:45 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 549 | Aug 12 10:45 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 550 | Aug 12 10:45 : client: [0] opened from 127.0.0.1:46620 551 | Aug 12 10:45 : avahi: Service 'Music Player @ Hacknet' successfully established. 552 | Aug 12 10:45 : player: played "Zella Day - East of Eden.flac" 553 | Aug 12 10:48 : player: played "街道办GDC _ 欧阳耀莹 - 春娇与志明.flac" 554 | Aug 12 10:48 : alsa_output: Decoder is too slow; playing silence to avoid xrun 555 | Aug 12 10:49 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 556 | Aug 12 10:49 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 557 | Aug 12 10:49 : client: [0] opened from 127.0.0.1:46886 558 | Aug 12 10:49 : avahi: Service 'Music Player @ Hacknet' successfully established. 559 | Aug 12 10:56 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 560 | Aug 12 10:56 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 561 | Aug 12 10:56 : client: [0] opened from 127.0.0.1:47594 562 | Aug 12 10:56 : avahi: Service 'Music Player @ Hacknet' successfully established. 563 | Aug 12 11:00 : client: [1] opened from 127.0.0.1:47878 564 | Aug 12 11:00 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 565 | Aug 12 11:00 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 566 | Aug 12 11:00 : client: [0] opened from 127.0.0.1:47888 567 | Aug 12 11:00 : avahi: Service 'Music Player @ Hacknet' successfully established. 568 | Aug 12 11:03 : client: [1] opened from 127.0.0.1:48026 569 | Aug 12 11:03 : client: [1] closed 570 | Aug 12 11:03 : client: [2] opened from 127.0.0.1:48030 571 | Aug 12 11:03 : client: [2] closed 572 | Aug 12 11:03 : client: [3] opened from 127.0.0.1:48036 573 | Aug 12 11:03 : client: [3] closed 574 | Aug 12 11:03 : client: [4] opened from 127.0.0.1:48040 575 | Aug 12 11:03 : client: [4] closed 576 | Aug 12 11:03 : client: [5] opened from 127.0.0.1:48044 577 | Aug 12 11:03 : client: [5] closed 578 | Aug 12 11:03 : client: [6] opened from 127.0.0.1:48054 579 | Aug 12 11:03 : client: [7] opened from 127.0.0.1:48058 580 | Aug 12 11:03 : client: [7] closed 581 | Aug 12 11:03 : client: [8] opened from 127.0.0.1:48064 582 | Aug 12 11:03 : client: [8] closed 583 | Aug 12 11:03 : client: [9] opened from 127.0.0.1:48068 584 | Aug 12 11:03 : client: [9] closed 585 | Aug 12 11:03 : client: [10] opened from 127.0.0.1:48072 586 | Aug 12 11:03 : client: [10] closed 587 | Aug 12 11:03 : client: [11] opened from 127.0.0.1:48076 588 | Aug 12 11:03 : client: [11] closed 589 | Aug 12 11:03 : client: [12] opened from 127.0.0.1:48080 590 | Aug 12 11:03 : client: [12] closed 591 | Aug 12 11:03 : client: [13] opened from 127.0.0.1:48084 592 | Aug 12 11:03 : client: [13] closed 593 | Aug 12 11:03 : client: [14] opened from 127.0.0.1:48088 594 | Aug 12 11:03 : client: [14] closed 595 | Aug 12 11:05 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 596 | Aug 12 11:05 : alsa_output: Decoder is too slow; playing silence to avoid xrun 597 | Aug 12 11:08 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 598 | Aug 12 11:08 : alsa_output: Decoder is too slow; playing silence to avoid xrun 599 | Aug 12 11:11 : player: played "Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac" 600 | Aug 12 11:12 : client: [0] closed 601 | Aug 12 11:12 : client: [15] opened from 127.0.0.1:48388 602 | Aug 12 11:15 : player: played "Alan Walker _ Gavin James - Tired.flac" 603 | Aug 12 11:16 : client: [15] closed 604 | Aug 12 11:16 : client: [16] opened from 127.0.0.1:48512 605 | Aug 12 11:18 : player: played "Alan Walker _ Iselin Solheim - Faded.flac" 606 | Aug 12 11:21 : client: [16] closed 607 | Aug 12 11:21 : client: [17] opened from 127.0.0.1:48650 608 | Aug 12 11:21 : player: played "Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3" 609 | Aug 12 11:21 : alsa_output: Decoder is too slow; playing silence to avoid xrun 610 | Aug 12 11:23 : client: [17] closed 611 | Aug 12 11:23 : client: [18] opened from 127.0.0.1:48712 612 | Aug 12 11:25 : player: played "Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac" 613 | Aug 12 11:26 : client: [18] closed 614 | Aug 12 11:26 : client: [19] opened from 127.0.0.1:48786 615 | Aug 12 11:28 : player: played "Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac" 616 | Aug 12 11:32 : player: played "Alan Walker _ Sorana - Lost Control.mp3" 617 | Aug 12 11:32 : alsa_output: Decoder is too slow; playing silence to avoid xrun 618 | Aug 12 11:35 : player: played "Alan Walker - Routine.flac" 619 | Aug 12 11:38 : client: [20] opened from 127.0.0.1:49858 620 | Aug 12 11:38 : client: [20] closed 621 | Aug 12 11:38 : client: [21] opened from 127.0.0.1:49916 622 | Aug 12 11:38 : client: [21] closed 623 | Aug 12 12:11 : player: played "Alok _ Bruno Martini _ Zeeba - Hear Me Now.flac" 624 | Aug 12 12:15 : player: played "Asher Monroe - Here With You.mp3" 625 | Aug 12 12:18 : player: played "Austin Mahone _ Rich Homie Quan - Send It.mp3" 626 | Aug 12 12:20 : player: played "Avicii _ Aloe Blacc - SOS.mp3" 627 | Aug 12 12:25 : player: played "Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3" 628 | Aug 12 12:28 : player: played "Avicii _ Sandro Cavazza - Without You.flac" 629 | Aug 12 12:28 : client: [19] closed 630 | Aug 12 12:28 : client: [22] opened from 127.0.0.1:51154 631 | Aug 12 12:32 : player: played "Axero _ Vexento - Our Road.flac" 632 | Aug 12 12:35 : player: played "CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac" 633 | Aug 12 12:39 : player: played "Ed Sheeran - Shape of You.flac" 634 | Aug 12 12:39 : alsa_output: Decoder is too slow; playing silence to avoid xrun 635 | Aug 12 12:43 : player: played "ILLENIUM _ Bahari - Crashing.mp3" 636 | Aug 12 12:47 : player: played "ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3" 637 | Aug 12 12:51 : player: played "ILLENIUM _ Joni Fatora - Sleepwalker.flac" 638 | Aug 12 12:55 : player: played "ILLENIUM - Fractures.flac" 639 | Aug 12 12:56 : client: [23] opened from 127.0.0.1:51980 640 | Aug 12 12:56 : client: [23] closed 641 | Aug 12 12:58 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 642 | Aug 12 13:00 : client: [24] opened from 127.0.0.1:52110 643 | Aug 12 13:00 : client: [24] closed 644 | Aug 12 13:00 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 645 | Aug 12 13:00 : alsa_output: Decoder is too slow; playing silence to avoid xrun 646 | Aug 12 13:02 : client: [25] opened from 127.0.0.1:52164 647 | Aug 12 13:02 : client: [25] closed 648 | Aug 12 13:33 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 649 | Aug 12 16:04 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 650 | Aug 12 16:04 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 651 | Aug 12 16:04 : client: [0] opened from 127.0.0.1:38144 652 | Aug 12 16:04 : avahi: Service 'Music Player @ Hacknet' successfully established. 653 | Aug 12 16:23 : client: [1] opened from 127.0.0.1:39778 654 | Aug 12 16:23 : client: [1] closed 655 | Aug 12 16:23 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 656 | Aug 12 16:27 : player: played "Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac" 657 | Aug 12 16:30 : player: played "Alan Walker _ Gavin James - Tired.flac" 658 | Aug 12 16:34 : player: played "Alan Walker _ Iselin Solheim - Faded.flac" 659 | Aug 12 16:37 : player: played "Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3" 660 | Aug 12 16:37 : alsa_output: Decoder is too slow; playing silence to avoid xrun 661 | Aug 12 16:40 : player: played "Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac" 662 | Aug 12 16:44 : player: played "Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac" 663 | Aug 12 16:47 : player: played "Alan Walker _ Sorana - Lost Control.mp3" 664 | Aug 12 16:47 : alsa_output: Decoder is too slow; playing silence to avoid xrun 665 | Aug 12 16:50 : client: [2] opened from 127.0.0.1:41248 666 | Aug 12 16:53 : player: played "Alok _ Bruno Martini _ Zeeba - Hear Me Now.flac" 667 | Aug 12 16:57 : player: played "Asher Monroe - Here With You.mp3" 668 | Aug 12 17:00 : player: played "Austin Mahone _ Rich Homie Quan - Send It.mp3" 669 | Aug 12 17:02 : player: played "Avicii _ Aloe Blacc - SOS.mp3" 670 | Aug 12 17:07 : player: played "Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3" 671 | Aug 12 17:10 : client: [3] opened from 127.0.0.1:42196 672 | Aug 12 17:10 : client: [3] closed 673 | Aug 12 17:41 : client: [4] opened from 127.0.0.1:42648 674 | Aug 12 17:41 : client: [4] closed 675 | Aug 12 17:41 : player: played "Avicii _ Sandro Cavazza - Without You.flac" 676 | Aug 12 17:43 : client: [5] opened from 127.0.0.1:42654 677 | Aug 12 17:43 : client: [5] closed 678 | Aug 12 18:55 : client: [2] closed 679 | Aug 12 18:55 : player: played "Axero _ Vexento - Our Road.flac" 680 | Aug 13 09:52 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 681 | Aug 13 09:52 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 682 | Aug 13 09:52 : client: [0] opened from 127.0.0.1:42748 683 | Aug 13 09:52 : avahi: Service 'Music Player @ Hacknet' successfully established. 684 | Aug 13 09:53 : client: [1] opened from 127.0.0.1:42758 685 | Aug 13 09:53 : client: [2] opened from 127.0.0.1:42770 686 | Aug 13 09:53 : client: [2] closed 687 | Aug 13 09:55 : player: played "Axero _ Vexento - Our Road.flac" 688 | Aug 13 09:58 : player: played "CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac" 689 | Aug 13 10:02 : player: played "Ed Sheeran - Shape of You.flac" 690 | Aug 13 10:06 : player: played "ILLENIUM _ Bahari - Crashing.mp3" 691 | Aug 13 10:10 : player: played "ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3" 692 | Aug 13 10:14 : player: played "ILLENIUM _ Joni Fatora - Sleepwalker.flac" 693 | Aug 13 10:18 : player: played "ILLENIUM - Fractures.flac" 694 | Aug 13 10:22 : player: played "Imagine Dragons _ Lil Wayne - Believer.mp3" 695 | Aug 13 10:24 : player: played "Imagine Dragons - Demons.mp3" 696 | Aug 13 10:28 : player: played "Imagine Dragons - Natural.flac" 697 | Aug 13 10:31 : player: played "Imagine Dragons - Radioactive.mp3" 698 | Aug 13 10:34 : player: played "Joakim Lundell - Waiting For.mp3" 699 | Aug 13 10:37 : player: played "K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac" 700 | Aug 13 10:40 : client: [0] closed 701 | Aug 13 10:40 : client: [3] opened from 127.0.0.1:45028 702 | Aug 13 10:42 : player: played "OneRepublic - Counting Stars.flac" 703 | Aug 13 10:45 : player: played "Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3" 704 | Aug 13 10:45 : alsa_output: Decoder is too slow; playing silence to avoid xrun 705 | Aug 13 10:48 : player: played "Selena Gomez _ Marshmello - Wolves.flac" 706 | Aug 13 10:48 : alsa_output: Decoder is too slow; playing silence to avoid xrun 707 | Aug 13 10:50 : client: [3] closed 708 | Aug 13 10:50 : client: [4] opened from 127.0.0.1:45516 709 | Aug 13 10:51 : player: played "Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3" 710 | Aug 13 10:55 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 711 | Aug 13 10:55 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 712 | Aug 13 10:55 : client: [0] opened from 127.0.0.1:45742 713 | Aug 13 10:55 : avahi: Service 'Music Player @ Hacknet' successfully established. 714 | Aug 13 10:59 : client: [0] closed 715 | Aug 13 10:59 : client: [1] opened from 127.0.0.1:45986 716 | Aug 13 10:59 : player: played "The Chainsmokers _ Coldplay - Something Just Like This.flac" 717 | Aug 13 10:59 : client: [1] closed 718 | Aug 13 10:59 : client: [2] opened from 127.0.0.1:46000 719 | Aug 13 11:02 : player: played "The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac" 720 | Aug 13 11:02 : alsa_output: Decoder is too slow; playing silence to avoid xrun 721 | Aug 13 11:06 : player: played "The Rescues - Can't Stand The Rain (Album Version).flac" 722 | Aug 13 11:09 : player: played "Troye Sivan - WILD.flac" 723 | Aug 13 11:13 : player: played "Vicetone _ Cozi Zuehlsdorff - Way Back.flac" 724 | Aug 13 11:13 : alsa_output: Decoder is too slow; playing silence to avoid xrun 725 | Aug 13 11:16 : player: played "Vicetone _ Haley Reinhart - Something Strange.mp3" 726 | Aug 13 11:16 : alsa_output: Decoder is too slow; playing silence to avoid xrun 727 | Aug 13 11:19 : player: played "Vicetone _ Matt Wertz - Fences.flac" 728 | Aug 13 11:19 : alsa_output: Decoder is too slow; playing silence to avoid xrun 729 | Aug 13 11:23 : player: played "Vicetone _ Meron Ryan - Walk Thru Fire.flac" 730 | Aug 13 11:23 : alsa_output: Decoder is too slow; playing silence to avoid xrun 731 | Aug 13 11:26 : player: played "Vicetone _ Popeska _ Luciana - The New Kings.flac" 732 | Aug 13 11:30 : player: played "Vicetone _ Youngblood Hawke - Landslide.flac" 733 | Aug 13 11:33 : player: played "Vicetone - Anywhere I Go.flac" 734 | Aug 13 11:33 : alsa_output: Decoder is too slow; playing silence to avoid xrun 735 | Aug 13 11:37 : player: played "Vicetone - Nothing Stopping Me (Radio Edit).mp3" 736 | Aug 13 11:41 : player: played "Vicetone - Starboy (Vicetone Remix).mp3" 737 | Aug 13 11:45 : player: played "Vicetone - United We Dance (Vicetone Edit).mp3" 738 | Aug 13 11:46 : client: [3] opened from 127.0.0.1:46110 739 | Aug 13 11:46 : client: [3] closed 740 | Aug 13 12:13 : client: [4] opened from 127.0.0.1:46128 741 | Aug 13 12:13 : client: [4] closed 742 | Aug 13 12:15 : alsa_output: Decoder is too slow; playing silence to avoid xrun 743 | Aug 13 12:15 : player: played "Zella Day - East of Eden.flac" 744 | Aug 13 12:33 : client: [5] opened from 127.0.0.1:46144 745 | Aug 13 12:33 : client: [5] closed 746 | Aug 13 12:33 : client: [6] opened from 127.0.0.1:46146 747 | Aug 13 12:33 : client: [6] closed 748 | Aug 13 12:34 : client: [2] closed 749 | Aug 13 12:34 : client: [7] opened from 127.0.0.1:46148 750 | Aug 13 12:36 : player: played "街道办GDC _ 欧阳耀莹 - 春娇与志明.flac" 751 | Aug 13 12:36 : alsa_output: Decoder is too slow; playing silence to avoid xrun 752 | Aug 13 12:40 : player: played "英雄联盟 - Legends Never Die.flac" 753 | Aug 13 12:43 : player: played "英雄联盟 - Welcome to Planet Urf.flac" 754 | Aug 13 12:43 : alsa_output: Decoder is too slow; playing silence to avoid xrun 755 | Aug 13 12:43 : client: [7] closed 756 | Aug 13 12:43 : client: [8] opened from 127.0.0.1:46702 757 | Aug 13 12:45 : player: played "张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac" 758 | Aug 13 12:45 : alsa_output: Decoder is too slow; playing silence to avoid xrun 759 | Aug 13 12:49 : player: played "Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac" 760 | Aug 13 12:52 : player: played "Alan Walker _ Gavin James - Tired.flac" 761 | Aug 13 12:55 : player: played "Alan Walker _ Iselin Solheim - Faded.flac" 762 | Aug 13 12:56 : client: [8] closed 763 | Aug 13 12:56 : client: [9] opened from 127.0.0.1:47150 764 | Aug 13 12:56 : client: [9] closed 765 | Aug 13 12:56 : client: [10] opened from 127.0.0.1:47162 766 | Aug 13 12:59 : player: played "Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3" 767 | Aug 13 12:59 : alsa_output: Decoder is too slow; playing silence to avoid xrun 768 | Aug 13 13:02 : player: played "Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac" 769 | Aug 13 13:05 : player: played "Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac" 770 | Aug 13 13:09 : player: played "Alan Walker _ Sorana - Lost Control.mp3" 771 | Aug 13 13:09 : alsa_output: Decoder is too slow; playing silence to avoid xrun 772 | Aug 13 13:12 : player: played "Alok _ Bruno Martini _ Zeeba - Hear Me Now.flac" 773 | Aug 13 13:16 : player: played "Asher Monroe - Here With You.mp3" 774 | Aug 13 13:19 : player: played "Austin Mahone _ Rich Homie Quan - Send It.mp3" 775 | Aug 13 13:22 : player: played "Avicii _ Aloe Blacc - SOS.mp3" 776 | Aug 13 13:26 : player: played "Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3" 777 | Aug 13 13:29 : player: played "Avicii _ Sandro Cavazza - Without You.flac" 778 | Aug 13 13:34 : player: played "Axero _ Vexento - Our Road.flac" 779 | Aug 13 13:37 : player: played "CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac" 780 | Aug 13 13:39 : client: [11] opened from 127.0.0.1:49972 781 | Aug 13 13:39 : client: [11] closed 782 | Aug 13 13:41 : client: [10] closed 783 | Aug 13 13:42 : client: [12] opened from 127.0.0.1:50058 784 | Aug 13 13:56 : client: [12] closed 785 | Aug 13 13:56 : client: [13] opened from 127.0.0.1:50584 786 | Aug 13 13:57 : client: [13] closed 787 | Aug 13 13:57 : client: [14] opened from 127.0.0.1:50630 788 | Aug 13 13:58 : client: [14] closed 789 | Aug 13 13:58 : client: [15] opened from 127.0.0.1:50664 790 | Aug 13 13:59 : client: [16] opened from 127.0.0.1:50690 791 | Aug 13 13:59 : client: [17] opened from 127.0.0.1:50694 792 | Aug 13 13:59 : client: [17] closed 793 | Aug 13 14:01 : player: played "Ed Sheeran - Shape of You.flac" 794 | Aug 13 14:04 : player: played "ILLENIUM _ Bahari - Crashing.mp3" 795 | Aug 13 14:08 : player: played "ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3" 796 | Aug 13 14:12 : player: played "ILLENIUM _ Joni Fatora - Sleepwalker.flac" 797 | Aug 13 14:16 : player: played "ILLENIUM - Fractures.flac" 798 | Aug 13 14:20 : player: played "Imagine Dragons _ Lil Wayne - Believer.mp3" 799 | Aug 13 14:23 : player: played "Imagine Dragons - Demons.mp3" 800 | Aug 13 14:26 : player: played "Imagine Dragons - Natural.flac" 801 | Aug 13 14:29 : player: played "Imagine Dragons - Radioactive.mp3" 802 | Aug 13 14:32 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 803 | Aug 13 14:32 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted 804 | Aug 13 14:32 : client: [0] opened from 127.0.0.1:50718 805 | Aug 13 14:32 : avahi: Service 'Music Player @ Hacknet' successfully established. 806 | Aug 13 14:32 : client: [1] opened from 127.0.0.1:50736 807 | Aug 13 14:36 : player: played "K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac" 808 | Aug 13 14:40 : player: played "OneRepublic - Counting Stars.flac" 809 | Aug 13 14:43 : player: played "Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3" 810 | Aug 13 14:43 : alsa_output: Decoder is too slow; playing silence to avoid xrun 811 | Aug 13 14:47 : player: played "Selena Gomez _ Marshmello - Wolves.flac" 812 | Aug 13 14:47 : alsa_output: Decoder is too slow; playing silence to avoid xrun 813 | Aug 13 14:49 : player: played "Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3" 814 | Aug 13 14:53 : player: played "The Chainsmokers _ Coldplay - Something Just Like This.flac" 815 | Aug 13 14:57 : player: played "The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac" 816 | Aug 13 14:57 : alsa_output: Decoder is too slow; playing silence to avoid xrun 817 | Aug 13 15:01 : player: played "The Rescues - Can't Stand The Rain (Album Version).flac" 818 | Aug 13 15:04 : player: played "Troye Sivan - WILD.flac" 819 | Aug 13 15:07 : player: played "Vicetone _ Cozi Zuehlsdorff - Way Back.flac" 820 | Aug 13 15:07 : alsa_output: Decoder is too slow; playing silence to avoid xrun 821 | Aug 13 15:10 : player: played "Vicetone _ Haley Reinhart - Something Strange.mp3" 822 | Aug 13 15:10 : alsa_output: Decoder is too slow; playing silence to avoid xrun 823 | Aug 13 15:13 : client: [2] opened from 127.0.0.1:52244 824 | Aug 13 15:13 : client: [2] closed 825 | Aug 13 15:14 : client: [3] opened from 127.0.0.1:52270 826 | Aug 13 15:14 : client: [3] closed 827 | Aug 13 15:15 : player: played "Vicetone _ Matt Wertz - Fences.flac" 828 | Aug 13 15:15 : alsa_output: Decoder is too slow; playing silence to avoid xrun 829 | Aug 13 15:18 : player: played "Vicetone _ Meron Ryan - Walk Thru Fire.flac" 830 | Aug 13 15:18 : alsa_output: Decoder is too slow; playing silence to avoid xrun 831 | Aug 13 15:21 : player: played "Vicetone _ Popeska _ Luciana - The New Kings.flac" 832 | Aug 13 15:25 : player: played "Vicetone _ Youngblood Hawke - Landslide.flac" 833 | Aug 13 15:29 : player: played "Vicetone - Anywhere I Go.flac" 834 | Aug 13 15:29 : alsa_output: Decoder is too slow; playing silence to avoid xrun 835 | Aug 13 15:32 : player: played "Vicetone - Nothing Stopping Me (Radio Edit).mp3" 836 | -------------------------------------------------------------------------------- /.config/mpd/mpd.conf: -------------------------------------------------------------------------------- 1 | music_directory "~/音乐/" 2 | playlist_directory "~/.config/mpd/playlists" 3 | db_file "~/.config/mpd/database" 4 | log_file "~/.config/mpd/log" 5 | state_file "~/.config/mpd/state" 6 | sticker_file "~/.config/mpd/sticker.sql" 7 | 8 | bind_to_address "127.0.0.1" 9 | port "6600" 10 | 11 | input { 12 | plugin "curl" 13 | # proxy "proxy.isp.com:8080" 14 | # proxy_user "user" 15 | # proxy_password "password" 16 | } 17 | 18 | audio_output { 19 | type "alsa" 20 | name "pcm" 21 | mixer_type "software" # optional 22 | } 23 | -------------------------------------------------------------------------------- /.config/mpd/state: -------------------------------------------------------------------------------- 1 | sw_volume: 100 2 | audio_device_state:1:pcm 3 | state: play 4 | current: 46 5 | time: 4.063000 6 | random: 0 7 | repeat: 1 8 | single: 0 9 | consume: 0 10 | crossfade: 0 11 | mixrampdb: 0.000000 12 | mixrampdelay: -1.000000 13 | playlist_begin 14 | 0:街道办GDC _ 欧阳耀莹 - 春娇与志明.flac 15 | 1:英雄联盟 - Legends Never Die.flac 16 | 2:英雄联盟 - Welcome to Planet Urf.flac 17 | 3:张艺兴 _ Alan Walker - Sheep (Alan Walker Relift).flac 18 | 4:Alan Walker _ Au_Ra _ Tomine Harket - Darkside.flac 19 | 5:Alan Walker _ Gavin James - Tired.flac 20 | 6:Alan Walker _ Iselin Solheim - Faded.flac 21 | 7:Alan Walker _ K-391 _ Sofia Carson _ CORSAK - Different World.mp3 22 | 8:Alan Walker _ Noah Cyrus _ Digital Farm Animals _ Juliander - All Falls Down.flac 23 | 9:Alan Walker _ Sabrina Carpenter _ Farruko - On My Way.flac 24 | 10:Alan Walker _ Sorana - Lost Control.mp3 25 | 11:Alok _ Bruno Martini _ Zeeba - Hear Me Now.flac 26 | 12:Asher Monroe - Here With You.mp3 27 | 13:Austin Mahone _ Rich Homie Quan - Send It.mp3 28 | 14:Avicii _ Aloe Blacc - SOS.mp3 29 | 15:Avicii _ Martin Garrix _ Simon Aldred - Waiting For Love.mp3 30 | 16:Avicii _ Sandro Cavazza - Without You.flac 31 | 17:Axero _ Vexento - Our Road.flac 32 | 18:CORSAK _ 马吟吟 - 溯 (Reverse) feat. 马吟吟.flac 33 | 19:Ed Sheeran - Shape of You.flac 34 | 20:ILLENIUM _ Bahari - Crashing.mp3 35 | 21:ILLENIUM _ Call Me Karizma - God Damnit (Explicit).mp3 36 | 22:ILLENIUM _ Joni Fatora - Sleepwalker.flac 37 | 23:ILLENIUM - Fractures.flac 38 | 24:Imagine Dragons _ Lil Wayne - Believer.mp3 39 | 25:Imagine Dragons - Demons.mp3 40 | 26:Imagine Dragons - Natural.flac 41 | 27:Imagine Dragons - Radioactive.mp3 42 | 28:Joakim Lundell - Waiting For.mp3 43 | 29:K-391 _ Alan Walker _ Julie Bergan _ 승리 (胜利) - Ignite.flac 44 | 30:OneRepublic - Counting Stars.flac 45 | 31:Sam Tsui _ Casey Breves _ Kurt Hugo Schneider - All Time Low.mp3 46 | 32:Selena Gomez _ Marshmello - Wolves.flac 47 | 33:Steve Aoki _ Alan Walker _ ISAK - Are You Lonely.mp3 48 | 34:The Chainsmokers _ Coldplay - Something Just Like This.flac 49 | 35:The Glitch Mob _ Mako _ The Word Alive - RISE 登峰造极境.flac 50 | 36:The Rescues - Can't Stand The Rain (Album Version).flac 51 | 37:Troye Sivan - WILD.flac 52 | 38:Vicetone _ Cozi Zuehlsdorff - Way Back.flac 53 | 39:Vicetone _ Haley Reinhart - Something Strange.mp3 54 | 40:Vicetone _ Matt Wertz - Fences.flac 55 | 41:Vicetone _ Meron Ryan - Walk Thru Fire.flac 56 | 42:Vicetone _ Popeska _ Luciana - The New Kings.flac 57 | 43:Vicetone _ Youngblood Hawke - Landslide.flac 58 | 44:Vicetone - Anywhere I Go.flac 59 | 45:Vicetone - Nothing Stopping Me (Radio Edit).mp3 60 | 46:Vicetone - Starboy (Vicetone Remix).mp3 61 | 47:Vicetone - United We Dance (Vicetone Edit).mp3 62 | 48:Zella Day - East of Eden.flac 63 | playlist_end 64 | -------------------------------------------------------------------------------- /.config/mpd/sticker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CECoffee/Origin/c9a259d77d2d855ee2fe56f5a29425735dc9ca29/.config/mpd/sticker.sql -------------------------------------------------------------------------------- /.config/polybar/config: -------------------------------------------------------------------------------- 1 | [colors] 2 | background = #ff222240 3 | background-alt = #444 4 | foreground = #dfdfdf 5 | foreground-alt = #555 6 | primary = #ffb52a 7 | secondary = #e60053 8 | alert = #bd2c40 9 | nord0 = #2E3440 10 | nord1 = #3B4252 11 | nord2 = #434C5E 12 | nord3 = #4C566A 13 | nord4 = #D8DEE9 14 | nord5 = #E5E9F0 15 | nord6 = #ECEFF4 16 | nord7 = #8FBCBB 17 | nord8 = #88C0D0 18 | nord9 = #81A1C1 19 | urgent = #BF616A 20 | warning = #D08770 21 | notify = #EBCB8B 22 | success = #A3BE8C 23 | function = #B48EAD 24 | 25 | [bar/example] 26 | exec_always no-startup-id compton -b 27 | ## monitor = ${env:MONITOR:eDP-1} 28 | width = 100% 29 | height = 30 30 | ;offset-x = 1% 31 | ;offset-y = 1% 32 | radius = 6.0 33 | fixed-center = true 34 | bottom = true 35 | 36 | background = ${colors.background} 37 | foreground = ${colors.foreground} 38 | 39 | line-size = 3 40 | line-color = #f00 41 | 42 | border-bottom-size = 6 43 | border-left-size = 6 44 | border-right-size = 6 45 | border-color = #00000000 46 | 47 | padding-left = 0 48 | padding-right = 2 49 | 50 | module-margin-left = 1 51 | module-margin-right = 2 52 | 53 | font-0 = ttf-liberation-sans:fixed:pixelsize=12;1 54 | font-1 = source han sans cn:pixelsize=12:antialias=false;1 55 | font-2 = Font Awesome 5 Free:style=Solid:pixelsize=12;1 56 | font-3 = Font Awesome 5 Brands:style=Regular:pixelsize=12;1 57 | font-4 = material icons:pixelsize=16;3 58 | font-5 = Weather Icons:Style=Regular:size=12 59 | font-6 = FiraCodeRegular:pixelsize=12 60 | font-7 = siji:pixelsize=10;1 61 | font-8 = unifont:fontformat=truetype:size=8:antialias=false;0 62 | 63 | modules-left = powermenu date notify i3 upload download daily-poem 64 | modules-center = mpd 65 | 66 | modules-right = cpu memory backlight-acpi alsa wlan eth battery temperature 67 | 68 | tray-position = right 69 | tray-padding = 2 70 | tray-background = ${colors.background} 71 | 72 | cursor-click = pointer 73 | cursor-scroll = ns-resize 74 | 75 | enable-ipc = true 76 | [module/xwindow] 77 | type = internal/xwindow 78 | label = %title% 79 | width = 50 80 | label-maxlen = 45 81 | 82 | [module/xkeyboard] 83 | type = internal/xkeyboard 84 | 85 | ; List of indicators to ignore 86 | blacklist-0 = num lock 87 | blacklist-1 = scroll lock 88 | 89 | ; Format 90 | format = 91 | 92 | label-indicator-on-capslock =  CL 93 | label-indicator-on-capslock-foreground = ${colors.warning} 94 | label-indicator-on-capslock-underline = ${colors.warning} 95 | 96 | ; Icons 97 | layout-icon-default =  98 | 99 | [module/filesystem] 100 | type = internal/fs 101 | interval = 25 102 | 103 | mount-0 = / 104 | 105 | label-mounted = %{F#0a81f5}%mountpoint%%{F-}: %percentage_used%% 106 | label-unmounted = %mountpoint% not mounted 107 | label-unmounted-foreground = ${colors.foreground-alt} 108 | 109 | [module/bspwm] 110 | type = internal/bspwm 111 | 112 | label-focused = %index% 113 | label-focused-background = ${colors.background-alt} 114 | label-focused-underline= ${colors.primary} 115 | label-focused-padding = 2 116 | 117 | label-occupied = %index% 118 | label-occupied-padding = 2 119 | 120 | label-urgent = %index% 121 | label-urgent-background = ${colors.alert} 122 | label-urgent-padding = 2 123 | 124 | label-empty = %index% 125 | label-empty-foreground = ${colors.foreground-alt} 126 | label-empty-padding = 2 127 | 128 | [module/i3] 129 | type = internal/i3 130 | format = 131 | index-sort = true 132 | wrapping-scroll = false 133 | strip-wsnumbers = false 134 | pin-workspaces = true 135 | 136 | label-mode-padding = 2 137 | label-mode-foreground = #000 138 | label-mode-background = ${colors.primary} 139 | 140 | label-focused = %name% 141 | label-focused-background = ${module/bspwm.label-focused-background} 142 | label-focused-underline = #000 143 | label-focused-padding = ${module/bspwm.label-focused-padding} 144 | 145 | label-unfocused = %name% 146 | label-unfocused-padding = ${module/bspwm.label-occupied-padding} 147 | 148 | label-visible = %name% 149 | label-visible-background = ##ff222240 150 | label-visible-underline = ${self.label-focused-underline} 151 | label-visible-padding = ${self.label-focused-padding} 152 | 153 | label-urgent = %name% 154 | label-urgent-background = ${module/bspwm.label-urgent-background} 155 | label-urgent-padding = ${module/bspwm.label-urgent-padding} | 156 | 157 | 158 | [module/mpd] 159 | type = internal/mpd 160 | format-online = 161 | 162 | ;label-offline = mpd is offline 163 | 164 | icon-prev =  165 | icon-stop =  166 | icon-play =  167 | icon-pause =  168 | icon-next =  169 | icon-repeat =  170 | icon-single = ↻ 171 | icon-random =  172 | 173 | toggle-on-foreground = #ff 174 | toggle-off-foreground = #55 175 | 176 | label-song-maxlen = 25 177 | label-song-ellipsis = true 178 | 179 | 180 | [module/notify] 181 | type = custom/text 182 | content =  183 | content-foreground = ${colors.warning} 184 | content-underline = ${colors.warning} 185 | content-padding = 1 186 | 187 | click-left = xdotool key control+grave 188 | 189 | 190 | [module/xbacklight] 191 | type = internal/xbacklight 192 | enable-scroll = true 193 | 194 | format =